{% load i18n %}
{% if ed_with_header %}

  {{ event.title }}  

{% endif %}

{% if event.not_exact %}({% endif %}{{ event.date }}{% if event.not_exact %}){% endif %}

{{ event.description|safe }}
{% with project_part_list=event.project_parts.all size="small" %} {% if project_part_list %}

{% if project_part_list|length <= 4 %} {% for pp in project_part_list %}{{ pp.get_simple_entry|safe }}
{% endfor %} {% else %} {% include "layout_elements/menu_project_parts.html" %} {% endif %}

{% endif %} {% endwith %} {% with participant_list=event.participants.all size="small" %} {% if participant_list %}

{% if participant_list|length <= 4 %} {% for p in participant_list %}{{ p.get_simple_entry|safe }}
{% endfor %} {% else %} {% include "layout_elements/menu_participants.html" %} {% endif %}

{% endif %} {% endwith %}