{% extends request.is_ajax|yesno:'nullcont.htm,taskapp/ext.htm' %} {% load i18n tasktags %} {% block content %}
| {% trans 'Name and comment count' %} | {% trans 'Address' %} | {% trans 'The nature of the damage' %} | {% trans 'Description' %} | {% trans 'Task author' %} | {% trans 'Actions' %} | |||
|---|---|---|---|---|---|---|---|---|
| {# Task state #} {% if not task.is_relevant %} {% if task.priority == 'E' %} {% elif task.priority == 'A' %} {% endif %} {% endif %} {{ task.abon.get_full_name }} {% if task.comment_count > 0 %}({{ task.comment_count }}){% endif %} | {{ task.abon.group.title }}, {{ task.abon.street|default:'' }} {{ task.abon.house|default:'' }} | {% else %}{% trans 'User does not exist' %} | --- | {% endif %}{{ task.get_mode_display }} | {{ task.descr|default:'' }} | {% if task.author %} {{ task.author.username }} {% else %} {% trans 'Author does not exist' %} {% endif %} | {% is_today task.time_of_create as is_timecreate_is_today %} {% is_yesterday task.time_of_create as is_timecreate_is_yesterday %} {% if is_timecreate_is_today %} {% trans 'Today' %} {{ task.time_of_create|date:'H:i' }} {% elif is_timecreate_is_yesterday %} {% trans 'Yesterday' %} {{ task.time_of_create|date:'H:i' }} {% else %} {{ task.time_of_create|date:'d E H:i' }} {% endif %} | {% if perms.taskapp.change_task %} {% endif %} |
| {% trans 'The list is empty' %} | ||||||||
| {% include 'taskapp/footer_btns.html' %} | ||||||||