diff options
author | Dan McGee <dan@archlinux.org> | 2013-04-20 18:11:04 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-04-20 18:11:04 +0200 |
commit | b519c40e0af5b86ba660cf9d9cfc53a66fd8bef8 (patch) | |
tree | ff02b2b1e1efb79ceec7fe3ce8f5f490450899bb /templates/mirrors | |
parent | 95ceb2a4a42093c9fd728e9e3d546943bc7b0b9d (diff) | |
download | archweb-b519c40e0af5b86ba660cf9d9cfc53a66fd8bef8.tar.gz archweb-b519c40e0af5b86ba660cf9d9cfc53a66fd8bef8.tar.xz |
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')
-rw-r--r-- | templates/mirrors/status.html | 6 | ||||
-rw-r--r-- | templates/mirrors/status_table.html | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html index 8d32d3f..26e81e7 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> diff --git a/templates/mirrors/status_table.html b/templates/mirrors/status_table.html index 2dd7ef4..e848a9c 100644 --- a/templates/mirrors/status_table.html +++ b/templates/mirrors/status_table.html @@ -14,8 +14,7 @@ </tr> </thead> <tbody> - {% for m_url in urls %} - {% spaceless %}<tr class="{% cycle 'odd' 'even' %}"> + {% for m_url in urls %}<tr class="{% cycle 'odd' 'even' %}"> <td>{{ m_url.url }}</td> <td>{{ m_url.protocol }}</td> <td class="country">{% country_flag m_url.country %}{{ m_url.country.name }}</td> @@ -24,7 +23,6 @@ <td>{{ m_url.duration_avg|floatformat:2 }}</td> <td>{{ m_url.duration_stddev|floatformat:2 }}</td> <td>{{ m_url.score|floatformat:1|default:'∞' }}</td> - </tr> - {% endspaceless %}{% endfor %} + </tr>{% endfor %} </tbody> </table> |