| OLD | NEW |
| 1 {% extends "base.html" %} | 1 {% extends "base.html" %} |
| 2 | 2 |
| 3 {% block content %} | 3 {% block content %} |
| 4 <h2>Last Break Pad reports</h2> | 4 <h2>Last Break Pad reports</h2> |
| 5 {% for r in reports %} | 5 {% for r in reports %} |
| 6 <strong>Date:</strong> {{ r.date|date:"D M d, H:i T " }}<br> | 6 <strong>Date:</strong> {{ r.date|date:"D M d, H:i T " }}<br> |
| 7 <strong>Version:</strong> {{ r.version }}<br> | 7 <strong>Version:</strong> {{ r.version }}<br> |
| 8 <strong>User:</strong> {{ r.user }}<br> | 8 <strong>User:</strong> {{ r.user }}<br> |
| 9 <strong>Host:</strong> {{ r.host }}<br> | 9 <strong>Host:</strong> {{ r.host }}<br> |
| 10 <strong>Cwd:</strong> {{ r.cwd }}<br> | 10 <strong>Cwd:</strong> {{ r.cwd }}<br> |
| 11 <strong>Args:</strong> {{ r.args }}<br> | 11 <strong>Args:</strong> {{ r.args }}<br> |
| 12 <strong>Stack:</strong><br>{{ r.stack|linebreaksbr }}<br> | 12 <strong>Stack:</strong><br>{{ r.stack|linebreaksbr }}<br> |
| 13 <strong>Exception:</strong><br>{{ r.exception|linebreaksbr }}<br> | 13 <strong>Exception:</strong><br>{{ r.exception|linebreaksbr }}<br> |
| 14 <p> | 14 <p> |
| 15 {% endfor %} | 15 {% endfor %} |
| 16 {% endblock %} | 16 {% endblock %} |
| OLD | NEW |