{% if ed_with_header %}

  {{ event.title }}  

{% endif %}

{{ event.date }}

{{ event.description }}

{% with participant_list=event.participants.all %} {% if participant_list %}

{% for p in participant_list %} {{ p.name }}
{% endfor %}

{% endif %} {% endwith %} {% with project_part_list=event.project_parts.all %} {% if project_part_list %}

{% for pp in project_part_list %} {{ pp.name }}
{% endfor %}

{% endif %} {% endwith %}