Add status column to overview list

This commit is contained in:
Joshua Rubingh 2020-05-18 17:07:16 +02:00
parent 67320359fe
commit 832a8ca880
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
<th>{% trans "Name" %}</th>
<th>{% trans "Created" %}</th>
<th>{% trans "Updated" %}</th>
<th>{% trans "Running" %}</th>
<th>{% trans "Status" %}</th>
<th>{% trans "Report" %}</th>
</tr>
{% for schedule in object_list %}
@ -21,7 +21,7 @@
<td>{% comment %}<a href="{% url 'schedule:detail' pk=schedule.id %}">{% endcomment %}{{ schedule.name }}{% comment %}</a>{% endcomment %}</td>
<td>{{ schedule.created_at|date:"SHORT_DATETIME_FORMAT" }}</td>
<td>{{ schedule.updated_at|date:"SHORT_DATETIME_FORMAT" }}</td>
<td>None</td>
<td>{{ schedule.get_status_display }}</td>
<td>None</td>
</tr>
{% empty %}