{% extends request.is_ajax|yesno:'nullcont.htm,taskapp/ext.htm' %} {% load i18n %} {% block title %}{% trans 'Scheduled tasks me' %}{% endblock %} {% block content %}
{% with can_change_task=perms.taskapp.change_task can_remind=perms.taskapp.can_remind can_del_task=perms.taskapp.delete_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 'Condition' %} {% 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|default:'' }} {{ task.get_state_display }} {% if can_change_task %} {% endif %} {% if can_remind %} {% endif %} {% if can_del_task %} {% endif %}
{% trans 'All your tasks has been performed' %}
{% include 'taskapp/footer_btns.html' %}
{% endblock %}