{% extends "corbo/announce_list.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {{ object.category }} {% endblock %} {% block appbar %}

{{ object.title }}

{% trans 'Delete' %} {% trans 'Edit' %} {% trans 'Send test email' %} {% if sms_enabled %} {% trans 'Send test SMS' %} {% endif %} {% endblock %} {% block content %}
{{ object.text|safe }}
{% if object.publication_time or object.expiration_time or broadcasts %}
{% if object.publication_time %}

{% trans "Publication" %} {{ announce.publication_time|date:'DATETIME_FORMAT' }}

{% endif %} {% if object.expiration_time %}

{% trans "Expiration" %} {{ announce.expiration_time|date:'DATETIME_FORMAT' }}

{% endif %} {% if broadcasts %} {% for broadcast in broadcasts %}

{% trans "Sent" %} {{ broadcast.deliver_time|date:'DATETIME_FORMAT' }} {% blocktrans count delivers=broadcast.delivery_count %} to {{ delivers }} destination {% plural %} to {{ delivers }} destinations {% endblocktrans %}

{% endfor %} {% endif %}
{% endif %}
{% endblock %}