{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n static rules material_form coerce html_helpers %} {% load render_table from django_tables2 %} {% block browser_title %}{{ event }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ event }}

{% has_perm 'paweljong.change_event_rule' user event as can_change_event_rule %} {% has_perm 'paweljong.event_checkpoint_rule' user event as can_checkpoint_rule %}

{% if can_change_event_rule %} {% trans "Edit" %} {% endif %} {% if can_checkpoint %} {% trans "Checkpoint" %} {% endif %}

{{ event.description }}

event {{ event.date_event }} location_on {{ event.place }}
edit_calendar {% trans "Registration open until" %}: {{ event.date_registration }}
money {% trans "Participation fee (all inclusive)" %} {{ event.cost }}
group {{ event.linked_group.members.count }} {% trans "of" %} {{ event.max_participants }}
{% trans "Owners" %} {% for owner in event.owners_persons.all %} {% endfor %}
{% blocktrans %}Additional fields{% endblocktrans %}
{% render_table additional_fields_table %}
{% blocktrans %}Child groups{% endblocktrans%}
{% render_table child_groups_table %}
{% blocktrans %}Registrations{% endblocktrans %}
{% form form=registrations_filter.form %}{% endform %} {% trans "Search" as caption %} {% include "core/partials/save_button.html" with caption=caption icon="search" %}
{% render_table registrations_table %} {% endblock %}