File indexing completed on 2025-11-09 05:10:05
0001 {% extends ":/template_base.html" %}
0002
0003 {% block body %}
0004
0005 <h2>{% i18n "Free/Busy information for %1" incidence.organizer %}</h2>
0006 <h4>{% i18n "Busy times in date range %1 - %2:" incidence.start|kdate:"short" incidence.end|kdate:"short" %}</h4>
0007
0008 <p>
0009 <em><b>{% i18nc "tag for busy period list" "Busy:" %}</b></em>
0010
0011 {% for period in incidence.periods %}
0012 {% if period.duration %}
0013 {% i18nc "startDate for duration" "%1 for %2" period.dtStart|kdate:"short" period.duration %}
0014 {% else %}
0015 {% if period.date %}
0016 {% i18nc "date, fromTime - toTime" "%1, %2 - %3" period.date|kdate:"short" period.start|ktime:"short" period.end|ktime:"short" %}
0017 {% else %}
0018 {% i18nc "fromDateTime - endDateTime" "%1 - %2" period.start|kdatetime:"short" period.end|kdatetime:"short" %}
0019 {% endif %}
0020 {% endif %}
0021 {% if not forloop.last %}
0022 <br/>
0023 {% endif %}
0024 {% endfor %}
0025 </p>
0026
0027 {% endblock body %}
0028