summaryrefslogtreecommitdiff
path: root/templates/mirrors/error_table.html.jinja
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-16 02:38:51 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-04-16 02:38:51 -0400
commitc8d979b8a48805d162ab46cdc4e493da0aa1595c (patch)
tree6846db4f47e29a3fb6a951383ec764a897d3ab85 /templates/mirrors/error_table.html.jinja
parent4d4f76a4fd24891669c254b86b0173258b719b0e (diff)
parent790def2f4db2afec150bab8dc842f6068fb751db (diff)
Merge tag 'release_2015-04-13' into archweb-generic
Fix up 'None' display in places
Diffstat (limited to 'templates/mirrors/error_table.html.jinja')
-rw-r--r--templates/mirrors/error_table.html.jinja8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/mirrors/error_table.html.jinja b/templates/mirrors/error_table.html.jinja
index 52f68135..132aae63 100644
--- a/templates/mirrors/error_table.html.jinja
+++ b/templates/mirrors/error_table.html.jinja
@@ -7,16 +7,18 @@
<th>Error Message</th>
<th>Last Occurred</th>
<th>Occurrences (last {{ cutoff|hours }})</th>
+ <th></th>
</tr>
</thead>
<tbody>
{% for log in error_logs %}<tr class="{{ loop.cycle('odd', 'even') }}">
- <td>{{ log.url__url }}</td>
- <td>{{ log.url__protocol__protocol }}</td>
- <td class="country">{{ country_flag(log.country) }}{{ log.country.name }}</td>
+ <td>{{ log.url.url }}</td>
+ <td>{{ log.url.protocol.protocol }}</td>
+ <td class="country">{{ country_flag(log.url.country) }}{{ log.url.country.name }}</td>
<td class="wrap">{{ log.error|linebreaksbr }}</td>
<td>{{ log.last_occurred|date('Y-m-d H:i') }}</td>
<td>{{ log.error_count }}</td>
+ <td><a href="{{ log.url.get_absolute_url() }}">details</a></td>
</tr>{% endfor %}
</tbody>
</table>