File indexing completed on 2025-11-09 05:10:05
0001 {% extends ":/itip.html" %}
0002
0003 {% block incidenceDetail %}
0004 <tr>
0005 {% if incidence.recurs %}
0006 <th valign="top">{% i18n "First event:" %}</th>
0007 {% else %}
0008 <th valign="top">{% i18n "When:" %}</th>
0009 {% endif %}
0010 <td>{{ incidence.dateTime|safe }}</td>
0011 </tr>
0012
0013 {% if incidence.location %}
0014 <tr>
0015 <th valign="top">{% i18n "Where:" %}</th>
0016 <td>{{ incidence.location|safe }}</td>
0017 </tr>
0018 {% endif %}
0019
0020 {% if incidence.recurs %}
0021 <tr>
0022 <th valign="top">{% i18n "Recurrence:" %}</th>
0023 <td>{{ incidence.recurrence|safe }}</td>
0024 </tr>
0025 {% endif %}
0026
0027 {% if incidence.description %}
0028 <tr>
0029 <th valign="top">{% i18n "Description:" %}</th>
0030 <td>{{ incidence.description|safe }}</td>
0031 </tr>
0032 {% endif %}
0033
0034 {% endblock incidenceDetail %}
0035
0036
0037
0038 {% block incidenceEnd %}
0039 <!-- Events on the same day //-->
0040 <span class="leftColumn">
0041 {% if incidence.isMultiDay %}
0042 {% i18n "Events on these days:" %}
0043 {% else %}
0044 {% i18n "Events on this day:" %}
0045 {% endif %}
0046
0047 {% with incidence.checkCalendarButton as button %}
0048 <a class="button" href="{{ button.uri }}">{% icon button.icon %}{{ button.label }}</a>
0049 {% endwith %}
0050
0051 <ul>
0052 {% for event in incidence.eventsOnSameDays %}
0053 {% ifequal forloop.counter0 50 %}
0054 <li>...</li>
0055 {% else %}
0056 <li>{{ event.summary }}: {{ event.dateTime }}
0057 {% if event.calendar %}
0058 <small>({{ event.calendar }})</small>
0059 {% endif %}
0060 </li>
0061 {% endifequal %}
0062 {% endfor %}
0063 </ul>
0064 </span>
0065 {% endblock incidenceEnd %}