File indexing completed on 2025-11-09 05:10:05
0001 {% extends ":/itip.html" %}
0002
0003 {% block incidenceDetail %}
0004 <tr>
0005 <th>{% i18n "Person:" %}</th>
0006 <td>{{ incidence.organizer }}</td>
0007 </tr>
0008
0009 <tr>
0010 <th>{% i18n "Start date:" %}</th>
0011 <td>{{ incidence.dtStart|kdatetime }}</td>
0012 </tr>
0013
0014 <tr>
0015 <th>{% i18n "End date:" %}</th>
0016 <td>{{ incidence.dtEnd|kdatetime }}</td>
0017 </tr>
0018
0019 <tr>
0020 <td colspan="2"><hr></td>
0021 </tr>
0022 <tr>
0023 <td colspan="2">{% i18n "Busy periods given in this free/busy object:" %}</td>
0024 </tr>
0025
0026 {% for period in incidence.periods %}
0027 <tr>
0028 <td></td>
0029 <td>
0030 {% if period.hasDuration %}
0031 {% i18nc "<startDate> for <duration>" "%1 for %2" period.start|kdatetime period.duration %}
0032 {% else %}
0033 {% if period.isMultiDay %}
0034 {% i18nc "<startDate> - <endDate>" "%1 - %2" period.start|kdatetime period.end|kdatetime %}
0035 {% else %}
0036 {% i18nc "<date>, <startTime> - <endTime>" "%1, %2 - %3" period.start|kdate period.start|ktime period.end|ktime %}
0037 {% endif %}
0038 {% endif %}
0039 </td>
0040 <tr>
0041 {% endfor %}
0042
0043 {% endblock incidenceDetail %}