{% if object.repeat == 'does_not_repeat' %}
{% blocktrans with start=object.start|date:"j F Y H:i" end=object.end|date:"j F Y H:i" %}{{ start }} to {{ end }}{% endblocktrans %}
{% elif object.repeat == 'daily' %}
{% blocktrans with start=object.start|date:"H:i" end=object.end|date:"H:i" %}Daily from {{ start }} to {{ end }}{% endblocktrans %}
{% elif object.repeat == 'weekdays' %}
{% blocktrans with start=object.start|date:"H:i" end=object.end|date:"H:i" %}Weekdays from {{ start }} to {{ end }}{% endblocktrans %}
{% elif object.repeat == 'weekends' %}
{% blocktrans with start=object.start|date:"H:i" end=object.end|date:"H:i" %}Weekends from {{ start }} to {{ end }}{% endblocktrans %}
{% elif object.repeat == 'weekdays' %}
{% blocktrans with start=object.start|date:"H:i" end=object.end|date:"H:i" weekday=object.start|date:"l" %}Every {{ weekday }} from {{ start }} to {{ end }}{% endblocktrans %}
{% elif object.repeat == 'monthly_by_day_of_month' %}
{% blocktrans with day=object.start|date:"j" %}The {{ day }}th of every month{% endblocktrans %}
{% endif %}
{% with object.get_primary_contributors as contributors %}
{% if contributors %}
{% trans "With" %}
{% for obj in contributors %}{% if forloop.counter0 %}, {% endif %}{{ obj.title }}{% endfor %}
{% endif %}
{% endwith %}
{% endcache %}
{% with request.GET.page as page %}
{% if view_modifier.related_items %}
{% cache 300 'object-detail-inclusion-related' object.id object.modified page view_modifier.category %}