{% extends "master.html" %} {% block title %}{% if calendar %}{{ calendar.calendar_name }}{% elif location %} {{location}} {% else %}{{ _('Search') }}{% endif %}{% endblock %} {%block tag %}home{% endblock %} {% block content %}
{% if calendar or location %}

{% if calendar %} {{ calendar.calendar_name }} {% else %} {{ location }} {% endif %}

{{ calendar.calendar_description or '-' }}

{% else %}

{{ _('Search') }}

{{ _('Result of your search for "%(keyword)s"', keyword=keyword) }}

{% endif %}
{% if calendar %}

{{ _('Time are expressed in the %(timezone)s time zone.', timezone=tzone) }}

{% endif %} {% for meeting in meetings %} {% if loop.first %} {% set month = meeting.meeting_date.month %} {% set past = True %} {% set future = True %} {% endif %} {% set class = 'meeting_normal' %} {% if meeting.meeting_date >= today %} {% if meeting.meeting_date == today and past %} {% set class = 'today limit_past' %} {% set past = False %} {% elif future %} {% set class = 'limit_future' %} {% set future = False %} {% endif %} {% elif month != meeting.meeting_date.month %} {% else %} {% endif %} {% endfor %}
{{ _('Date') }} {{ _('Time') }} {{ _('Meeting') }} {{ _('Description') }} {{ _('Location') }}
{{ meeting.meeting_date }} {% if meeting.meeting_date != meeting.meeting_date_end %} to {{ meeting.meeting_date_end }} {% endif %} {{ meeting.meeting_time_start }} to {{ meeting.meeting_time_stop }} {{ meeting.meeting_name }} {% autoescape off%} {{ meeting.meeting_information | markdown_wrap}} {{ _('show more') }} {% endautoescape %} {% if meeting.meeting_location %} {{ meeting.meeting_location }} {% endif %}
{% endblock %} {% block sidebar %} {% if calendar %} {% endif %} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}