Private
Public Access
1
0
Files
rowsandall/rowers/templates/failed_jobs.html
Sander Roosendaal 196548fdcc staticfiles to static
2021-04-14 10:00:14 +02:00

43 lines
772 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Failed Que{% endblock %}
{% block main %}
<h1>Failed Que</h1>
<p>
<a href="/rowers/failedjobs/empty/">Empty Queue</a>
</p>
<p>
<table width="100%" style="white-space:pre-wrap; word-wrap:break-word">
<thead>
<tr>
<th>ID</th>
<th>Started at</th>
</tr>
</thead>
<tbody>
{% for job in resultslist %}
<tr>
<td><a href="/rowers/failedjobs/{{ job|lookuplong:'id' }}">{{ job|lookup:'id' }}</a></td>
<td>{{ job|lookup:'started_at' }}</td>
<td><pre>{{ job|lookuplong:'traceback1' }}</pre></td>
</tr>
{% endfor %}
</tbody>
</table>
</p>
{% endblock %}
{% block sidebar %}
{% include 'menu_profile.html' %}
{% endblock %}