Add status column to overview list
This commit is contained in:
parent
67320359fe
commit
832a8ca880
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue