{% extends "events/base-wide.html" %} {% load pagination_tags %} {% load event_tags %} {% load event_filters %} {% load base_tags %} {% load base_filters %} {% load perm_tags %} {% load avatar_tags %} {% load i18n %} {% block title %}{{ block.super }}Search{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{{ event.start_dt|date:"M j, Y" }}
{{ event.start_dt|date:"P" }} - {{ event.end_dt|date:"P" }}
{% trans "Speaker" %}
{{ speaker.name }}
{% trans "Organizer" %}
{{ organizer.name }}
|
{% trans "Event Registrant Search" %}{% registrant_search event %} {% if query %}{{ INDEX_UPDATE_NOTE }}
{% endif %}
{% autopaginate registrants 10 %}
{% for registrant in registrants %}
{% with registrant|get_object as registrant %}
{# has_perm user events.view_event event as can_view #}
{# if can_view #}
{% paginate %}
{% avatar registrant.user 80 %}
{% firstof registrant.get_name registrant.email %}{% if registrant.phone and registrant.email %}{{ registrant.phone|phonenumber }} · {{ registrant.email }}
{% else %}
{% if registrant.phone %}
{{ registrant.phone|phonenumber }}
{% else %}
{% if registrant.email %}
{{ registrant.email }}
{% endif %}
{% endif %}
{% endif %}
{% if registrant.position_title and registrant.company_name %}
{% blocktrans with registrant.position_title as postitle %}{{ postitle }}{% endblocktrans %}
{% blocktrans with registrant.company_name as regcomp %} at {{ regcomp }}{% endblocktrans %}
{% else %}
{% if registrant.position_title %}
{% blocktrans with registrant.position_title as postitle %}{{ postitle }}{% endblocktrans %}
{% else %}
{% if registrant.company_name %}
{% blocktrans with registrant.company_name as regcomp %}Works at {{ regcomp }}{% endblocktrans %}
{% endif %}
{% endif %}
{% endif %}
{% if registrant.custom_reg_form_entry and registrant.non_mapped_field_entries %}
{% for entry in registrant.non_mapped_field_entries %}
{{ entry.label }}: {{ entry.value }}
{% endfor %}
{% endif %}
{% trans "0 Results Found" %}
{% endfor %}
|