{% extends "base.html" %} {% block title %}{{ event.title }}: participants{% endblock %} {% block headers %} {% if event.parent %}

{{ event.parent.title }}

{% endif %}

{{ event.title }}

Participants

{% endblock %} {% block content %} {% if event.confirmed_participants() %} {% for participant in event.confirmed_participants() %} {% endfor %}
{{ participant.lastname }} {{ participant.firstname }}{% if participant.affiliation %} ({{ participant.affiliation }}){% endif %}
{% else %}

No information available.

{% endif %} {% if admin_participants %}

admin

{% for participant in admin_participants %} {% endfor %}
nametimestampemailperiodstategrant
{{ participant.lastname }} {{ participant.firstname }}
{{ participant.affiliation }}
{{ participant.creation_time|date("j.m") }} {{ participant.creation_time|time }} {{ participant.email }} {{ participant.date_from|date("j.m") }} - {{ participant.date_to|date("j.m") }} {{ participant.state }} {{ participant.grant_state }}
{{ participant.notes }} {% if participant.notes and participant.documents.all() %}
{% endif %} {% for document in participant.documents.all() %} [{{ document }}] {% if not loop.last %}
{% endif %}{% endfor %}
With selected persons: send notification email

all: {{ admin_participants.count() }}, grant requested: {{ admin_participants.exclude(grant_state='no').count() }}, granted: {{ admin_participants.filter(grant_state='granted').count() }}, grant rejected: {{ admin_participants.filter(grant_state='rejected').count() }}

{% endif %} {% endblock %}