{% extends "template_base.html" %} {% block body %} {% with _("Event") as type %} {% include "incidence_header.html" %} {% endwith %} {% if incidence.calendar %} {% endif %} {% if incidence.location %} {% endif %} {% if incidence.isAllDay %} {% if incidence.isMultiDay %} {% else %} {% endif %} {% else %} {% if incidence.isMultiDay %} {% else %} {% if incidence.hasEnd and incidence.overnight %} {% else %} {% endif %} {% endif %} {% endif %} {% if incidence.duration %} {% endif %} {% if incidence.recurs or incidence.isException %} {% if incidence.isException %} {% else %} {% endif %} {% endif %} {% if incidence.birthday %} {% endif %} {% if incidence.anniversary %} {% endif %} {% if incidence.description %} {% endif %} {% if incidence.reminders %} {% endif %} {% if incidence.organizer %} {% endif %} {% if incidence.chairs %} {% endif %} {% if incidence.requiredParticipants %} {% endif %} {% if incidence.optionalParticipants %} {% endif %} {% if incidence.observers %} {% endif %} {% if incidence.categories %} {% endif %} {% if incidence.attachments %} {% endif %}
{% i18n "Calendar:" %} {{ incidence.calendar }}
{% i18n "Location:" %} {{ incidence.location|safe }}
{% i18n "Date:" %} {% i18nc " - " "%1 - %2" incidence.startDate|kdate incidence.endDate|kdate %}{% i18n "Date:" %} {% i18nc "Date as string" "%1" incidence.startDate|kdate %}
{% i18n "Date:" %} {% i18nc " - " "%1 - %2" incidence.startDate|kdate incidence.endDate|kdate %}{% i18n "Date:" %} {% i18nc "Date as string" "%1" incidence.startDate|kdate %}
{% i18n "Time:" %}{% i18nc " - " "%1 - %2" incidence.startTime|ktime:"short" incidence.endTime|ktime:"short" %}{% i18nc "Time as string" "%1" incidence.startTime|ktime:"short" %}
{% i18n "Duration:" %} {{ incidence.duration }}
{% i18n "Recurrence:" %}{% i18nc "Exception in event recurrence" "Exception" %}{{ incidence.recurrence }}
{% i18n "Birthday:" %} {{ incidence.birthday }}
{% i18n "Anniversary:" %} {{ incidence.anniversary }}
{% i18n "Description:" %} {{ incidence.description|safe }}
{% i18np "Reminder:" "Reminders:" incidence.reminders|length %} {{ incidence.reminders|join:"
" }}
{% i18n "Organizer:" %} {% with incidence.organizer as attendee %} {% include "attendee_row.html" %} {% endwith %}
{% i18n "Chair:" %} {% for attendee in incidence.chair %} {% include "attendee_row.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% i18n "Required Participants:" %} {% for attendee in incidence.requiredParticipants %} {% include "attendee_row.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% i18n "Optional participants:" %} {% for attendee in incidence.optionalParticipants %} {% include "attendee_row.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% i18n "Observers:" %} {% for attendee in incidence.chair %} {% include "attendee_row.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% i18np "Category:" "Categories:" incidence.categories|length %} {{ incidence.categories|join:", " }}
{% i18np "Attachment:" "Attachments:" incidence.attachments|length %} {% for attachment in incidence.attachments %} {{ attachment.label }} {% if not forloop.last %}
{% endif %} {% endfor %}

{% i18n "Creation date: %1" incidence.creationDate|kdatetime %}

{% endblock body %}