{% extends request.is_ajax|yesno:'nullcont.htm,abonapp/ext.htm' %} {% load i18n %} {% block content %} {% for task in tasks %} {% empty %} {% endfor %}
{% trans 'Author' %} {% trans 'Recipients' %} {% trans 'Comment' %} {% trans 'State' %} {% trans 'Type' %} {% trans 'Date of make' %}
{% if task.author %} {{ task.author.get_short_name }} {% else %} {% trans 'No author attached' %} {% endif %} {% for rec in task.recipients.all %} {{ rec.get_short_name }} {% empty %} {% trans 'Recipients not found' %} {% endfor %} {{ task.descr|default:'—' }} {{ task.get_state_display }} {{ task.get_mode_display }} {{ task.time_of_create|date:"D d E Y H:i:s" }}
{% trans 'Tasks not found' %}
{% include 'taskapp/footer_btns.html' %}
{% endblock %}