{% extends request.is_ajax|yesno:'nullcont.htm,taskapp/ext.htm' %} {% load i18n %} {% block title %}{% trans 'Tasks in which no recipients' %}{% endblock %} {% block page-header %} {% trans 'Tasks in which no recipients' %} {% endblock %} {% block content %}
{% with has_change_task=perms.taskapp.change_task %} {% for task in tasks %} {% if task.is_relevant %} {% else %} {% if task.priority == 'E' %} {% elif task.priority == 'C' %} {% elif task.priority == 'A' %} {% else %} {% endif %} {% endif %} {% if task.abon and task.abon.group %} {% else %} {% endif %} {% empty %} {% endfor %} {% endwith %}
{% trans 'Name' %} {% trans 'Address' %} {% trans 'The nature of the damage' %} {% trans 'Description' %} {% trans 'Task author' %} {% trans 'Actions' %}
{{ task.abon.get_full_name }} {{ task.abon.group.title }}, {{ task.abon.street|default:_('Not assigned') }} {{ task.abon.house|default:_('Not assigned') }}{% trans 'User does not exist' %} ---{{ task.get_mode_display }} {{ task.descr }} {% if task.author %} {{ task.author.username }} {% else %} {% trans 'Not assigned' %} {% endif %} {% if has_change_task %} {% endif %}
{% trans 'The list is empty' %}
{% include 'taskapp/footer_btns.html' %}
{% endblock %}