{% extends ":/itip.html" %} {% block incidenceDetail %} {% i18n "Person:" %} {{ incidence.organizer }} {% i18n "Start date:" %} {{ incidence.dtStart|kdatetime }} {% i18n "End date:" %} {{ incidence.dtEnd|kdatetime }}
{% i18n "Busy periods given in this free/busy object:" %} {% for period in incidence.periods %} {% if period.hasDuration %} {% i18nc " for " "%1 for %2" period.start|kdatetime period.duration %} {% else %} {% if period.isMultiDay %} {% i18nc " - " "%1 - %2" period.start|kdatetime period.end|kdatetime %} {% else %} {% i18nc ", - " "%1, %2 - %3" period.start|kdate period.start|ktime period.end|ktime %} {% endif %} {% endif %} {% endfor %} {% endblock incidenceDetail %}