File indexing completed on 2025-10-26 04:54:02
0001 {% extends ":/itip.html" %}
0002
0003 {% block incidenceDetail %}
0004 {% if incidence.location %}
0005 <tr>
0006 <th valign="top">{% i18n "Where:" %}</th>
0007 <td>{{ incidence.location|safe }}</td>
0008 </tr>
0009 {% endif %}
0010
0011 <tr>
0012 {% if incidence.hasStartDate %}
0013 <th valign="top">{% i18n "When:" %}</th>
0014 {% if incidence.isAllDay %}
0015 {% if incidence.isMultiDay %}
0016 <td>{% i18nc "<beginDate> - <endDate>" "%1 - %2" incidence.dtStartStr|safe incidence.dtDueStr|safe %}</td>
0017 {% else %}
0018 <td>{{ incidence.dtStartStr|safe }}</td>
0019 {% endif %}
0020 {% else %}
0021 {% if incidence.isMultiDay %}
0022 <td>{% i18nc "<beginDateTime> - <endDateTime>" "%1 - %2" incidence.dtStartStr|safe incidence.dtDueStr|safe %}</td>
0023 {% else %}
0024 <td>{% i18nc "<beginDateTime> - <endTime>" "%1 - %2" incidence.dtStartStr|safe incidence.dtDueStr|safe %}</td>
0025 {% endif %}
0026 {% endif %}
0027 {% endif %}
0028 </tr>
0029
0030 {% if incidence.percentComplete %}
0031 <tr>
0032 <th valign="top">{% i18n "Percent Done:" %}</th>
0033 <td>{{ incidence.percentComplete|safe }}</td>
0034 </tr>
0035 {% endif %}
0036
0037 {% if not incidence.hasStartDate %}
0038 <tr>
0039 <th valign="top">{% i18n "Due:" %}</th>
0040 <td>{{ incidence.dtDueStr|safe }}</td>
0041 </tr>
0042 {% endif %}
0043
0044 {% if incidence.recurs %}
0045 <tr>
0046 <th valign="top">{% i18n "Recurrence:" %}</th>
0047 <td>{{ incidence.recurrence|safe }}</td>
0048 </tr>
0049 {% endif %}
0050
0051 {% if incidence.description %}
0052 <tr>
0053 <th valign="top">{% i18n "Description:" %}</th>
0054 <td>{{ incidence.description|safe }}</td>
0055 </tr>
0056 {% endif %}
0057
0058 {% endblock incidenceDetail %}