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/status_table.html | |
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/status_table.html')
-rw-r--r-- | templates/mirrors/status_table.html | 6 |
1 files changed, 2 insertions, 4 deletions
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> |