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

{{ event.parent.title }}

{% endif %}

{{ event.title }}{% if event.hidden %} [hidden]{% endif %}

{{ event.html_admin_buttons() }} {% if event.editable and event.crm_id %} {% endif %}
{% endblock %} {% block info %} {{ event.html_timestamps() }}
{{ facebook_like(event.get_absolute_url()) }} {% endblock info %} {% block content %}

{{ event.date_from|date }}{% if not event.date_to == event.date_from %} - {{ event.date_to|date }}{% endif %} {% if event.google_id %}  [open in google calendar]{% endif %}

{% if event.place %}

{{ event.place }}

{% endif %} {% if event.description %}

{{ event.description|simpletags }}

{% endif %} {% if event.organizers.all() %}

Organizers: {% for person in event.organizers.all() %} {% if person.user %}{{ person.firstname }} {{person.lastname}}{% else %}{{ person.firstname }} {{ person.lastname }}{% endif %}{% if not loop.last %}, {% else %}.{% endif %}{% endfor %}

{% endif %} {% if sub_events %}

Activities:

{% endif %} {% if event.registration_is_open() %}

If you are interested in participating to the event, please fill in the registration form. {% if event.grant_application_enabled %} {% if event.grant_description %}

{{ event.grant_description|simpletags }}

{% endif %} {% if event.grant_request_deadline %}

deadline for grant requests: {{ event.grant_request_deadline|date }}.

{% endif %} {% endif %} {% if event.registration_deadline %}

Deadline for application: {{ event.registration_deadline|date }}.

{% endif %}

{% else %} {% endif %} {% if event.confirmed_participants() %}

Participants ({{ event.confirmed_participants().count()}}).

{% else %} {% if event.editable and event.pending_registrations() %}

[manage registrations]

{% endif %} {% endif %} {% if event.timetable_enabled %}

Timetable.

{% endif %} {% set courses=event.seminars.filter(type='course').order_by('date','time') %} {% if courses %}

Courses: {% for seminar in courses %}
{{ seminar.html() }} {% endfor %}

{% endif %} {% set seminars=event.seminars.filter(type='seminar').order_by('date','time') %} {% if seminars %}

Seminars: {% for seminar in seminars %} {% if loop.changed(seminar.date) %}
{{ seminar.date.strftime('%e %b %Y') }}{% endif %}
{% if seminar.time %}{{ seminar.time.strftime("%H:%M") }} -{% endif %} {% for speaker in seminar.speakers.all() %}{{ speaker.short() }}{% if loop.last %}:{% else %},{% endif %}{% endfor %} {{ seminar.title }} {% endfor %}

{% endif %} {% if event.has_not_confirmed_seminars() %}

(*) to be confirmed

{% endif %} {% if event.editable %}

[add seminar/course]

{% endif %} {% if event.speakers.all() %}

Speakers: {% for person in event.speakers.all() %} {% if person.user %}{{ person.firstname }} {{person.lastname}}{% else %}{{ person.firstname }} {{ person.lastname }}{% endif %}{% if not loop.last %}, {% else %}.{% endif %}{% endfor %} {% if event.editable %} [download] {% endif %} {% endif %} {% if event.links.all() %}

{% endif %} {% if documents %}


Download:

{% endif %} {% if event.editable %}

[add/manage documents]

{% endif %} {% endblock %}