{% extends "template_base.html" %} {% block body %}
{% i18nc "tag for busy period list" "Busy:" %}
{% for period in incidence.periods %}
    {% if period.duration %}
        {% i18nc "startDate for duration" "%1 for %2" period.dtStart|kdate:"short" period.duration %}
    {% else %}
        {% if period.date %}
            {% i18nc "date, fromTime - toTime" "%1, %2 - %3" period.date|kdate:"short" period.start|ktime:"short" period.end|ktime:"short" %}
        {% else %}
            {% i18nc "fromDateTime - endDateTime" "%1 - %2" period.start|kdatetime:"short" period.end|kdatetime:"short" %}
        {% endif %}
    {% endif %}
    {% if not forloop.last %}
        
    {% endif %}
{% endfor %}