{% extends ":/template_base.html" %} {% block style %} #invitation { font-size: %1px !important; } #invitation h2 { margin: 5px 0 0 0 !important; } #invitation table { line-height: 140% !important; border-spacing: 0 !important; } #invitation th { padding: 5px 0 5px 0 !important; } #invitation td { padding: 5px 10px 5px 5px !important; } #invitation small { color: #555 !important; } #invitation hr { border: 1px solid #678db2 !important; } #invitation .button { display: inline-block !important; font-weight: bold !important; padding: 4px 8px !important; margin-bottom: 4px !important; border: 1px solid {{ incidence.style.buttonBorder }} !important; border-radius: 3px !important; background: {{ incidence.style.buttonBg }} !important; vertical-align: middle !important; } #invitation .button:hover{ border-color: {{ incidence.style.buttonBorderHl }} !important; } #invitation a.button { color: {{ incidence.style.buttonFg }} !important; } #invitation .button img{ vertical-align: middle !important; padding-right: 3px !important; } #invitation th { font-weight: bold !important; } #invitation .summary img { padding-right: 10px !important; width: 48px !important; vertical-align: middle !important; } {% endblock style %} {% block body %}

{{ incidence.head|safe }}

{{ incidence.eventInfo|safe }}

{% if incidence.myStatus %}

{{ incidence.myStatus|safe }}

{% endif %} {% for button in incidence.buttons %} {% if button.icon %} {% icon button.icon %} {% endif %} {{ button.label|safe }} {% endfor %} {% if incidence.comments %} {% ifequal incidencecomment|length 1 %} {% else %} {% endifequal %}
{% i18n "Comment:" %} {{ incidence.comments|first }}{% i18n "Comments:" %}
    {% for comment in incidence.comments %}
  • {{ comment }}
  • {% endfor %}
{% endif %}

{% if incidence.iconName %} {% icon incidence.iconName desktop %} {% endif %} {{ incidence.summary|safe }}

{% block incidenceDetail %} {% endblock %} {% if incidence.attendees %} {% endif %} {% if incidence.attachments %} {% endif %}
{{ incidence.attendeesTitle }} {% for attendee in incidence.attendees %} {% include ":/attendee_row.html" %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% i18n "Attachments:" %} {% for attachment in incidence.attachments %} {% icon attachment.icon Small %} {{ attachment.name }} {% if not forloop.last %}
{% endif %} {% endfor %}

{% block incidenceEnd %} {% endblock %}
{% endblock body %}