{% extends "page.html" %} {% block page_content %}
| Приоритет | Название | Объект | Исполнитель | Статус | Срок | |
|---|---|---|---|---|---|---|
| {{ t.priority }} | {{ t.title }} | {{ t.object.name if t.object else '' }} | {{ t.assignee.full_name if t.assignee else '' }} | {{ {'open':'Открыта','in_progress':'В работе','completed':'Завершена','cancelled':'Отменена'}[t.status] }} | {{ t.deadline.strftime('%d.%m.%Y') if t.deadline else '' }} | {% if t.status in ['open','in_progress'] and (user.role in ['owner','engineer'] or t.assigned_to == user.id) %} {% endif %} |