summaryrefslogtreecommitdiffstats
path: root/templates/mirrors/status.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-04-20 11:11:04 -0500
committerDan McGee <dan@archlinux.org>2013-04-20 11:11:04 -0500
commitb519c40e0af5b86ba660cf9d9cfc53a66fd8bef8 (patch)
treeff02b2b1e1efb79ceec7fe3ce8f5f490450899bb /templates/mirrors/status.html
parent95ceb2a4a42093c9fd728e9e3d546943bc7b0b9d (diff)
downloadarchweb-b519c40e0af5b86ba660cf9d9cfc53a66fd8bef8.tar.gz
archweb-b519c40e0af5b86ba660cf9d9cfc53a66fd8bef8.zip
Remove {% spaceless %} tag from a few more places
This tag is simply not worth the time it takes to do what it does. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/mirrors/status.html')
-rw-r--r--templates/mirrors/status.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html
index 8d32d3fa..26e81e79 100644
--- a/templates/mirrors/status.html
+++ b/templates/mirrors/status.html
@@ -87,16 +87,14 @@
</tr>
</thead>
<tbody>
- {% for log in error_logs %}
- {% spaceless %}<tr class="{% cycle 'odd' 'even' %}">
+ {% for log in error_logs %}<tr class="{% 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 class="wrap">{{ log.error|linebreaksbr }}</td>
<td>{{ log.last_occurred|date:'Y-m-d H:i' }}</td>
<td>{{ log.error_count }}</td>
- </tr>
- {% endspaceless %}{% endfor %}
+ </tr>{% endfor %}
</tbody>
</table>