You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.9 KiB
69 lines
2.9 KiB
{% extends request.is_ajax|yesno:'nullcont.htm,taskapp/ext.htm' %}
|
|
{% block content %}
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th class="col-sm-6">Пару слов..</th>
|
|
<th class="col-sm-1">Характер поломки</th>
|
|
<th class="col-sm-1">Состояние</th>
|
|
<th class="col-sm-1">Приоритет</th>
|
|
<th class="col-sm-1">Дата создания</th>
|
|
<th class="col-sm-1">Приложение</th>
|
|
<th class="col-sm-1">Действия</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for task in tasks %}
|
|
|
|
{% if task.priority == 'E' %}
|
|
<tr class="success">
|
|
{% elif task.priority == 'C' %}
|
|
<tr>
|
|
{% elif task.priority == 'A' %}
|
|
<tr class="danger">
|
|
{% else %}
|
|
<tr>{% endif %}
|
|
|
|
<td><a href="{% url 'taskapp:view' task.id %}" target="_blank">{{ task.id }}</a></td>
|
|
<td>{{ task.descr }}</td>
|
|
<td>{{ task.get_mode_display }}</td>
|
|
<td>{{ task.get_state_display }}</td>
|
|
<td>{{ task.get_priority_display }}</td>
|
|
<td>{{ task.time_of_create|date:'d N yг H:i:s' }}</td>
|
|
<td>{% if task.attachment %}<a href="{{ task.attachment.url }}" target="_blank">{{ task.attachment.name }}</a>{% else %}―{% endif %}</td>
|
|
<td class="btn-group btn-group-justified">
|
|
<a href="{% url 'taskapp:edit' task.id %}" class="btn btn-sm btn-default" title="Редактировать">
|
|
<span class="glyphicon glyphicon-edit"></span>
|
|
</a>
|
|
{% if perms.taskapp.can_viewall %}
|
|
<a href="{% url 'taskapp:remind' task.id %}" class="btn btn-default btn-sm" title="Напомнить">
|
|
<span class="glyphicon glyphicon-bell"></span>
|
|
</a>
|
|
{% endif %}
|
|
<a href="{% url 'taskapp:delete' task.id %}" class="btn btn-sm btn-danger" title="Удалить">
|
|
<span class="glyphicon glyphicon-remove-circle"></span>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="8">Все ваши задачи выполнены</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="8">
|
|
{% include 'taskapp/footer_btns.html' %}
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
{% include 'toolbar_page.html' with pag=tasks %}
|
|
|
|
{% endblock %}
|