Use spaceless tag on signoffs page

More whitespace collapsing to shrink the HTML size quite a bit.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2012-03-29 11:50:21 -05:00
parent ef88f3d5ef
commit 30f775f0b4
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,3 @@
{% spaceless %}
{% if group.signoffs %}
<ul class="signoff-list">
{% for signoff in group.signoffs %}
@ -22,4 +21,3 @@
<a class="signoff-options" href="{{ group.package.get_absolute_url }}signoff/options/">Signoff Options</a>
</div>
{% endif %}
{% endspaceless %}

View File

@ -52,6 +52,7 @@ <h3>Filter Displayed Signoffs</h3>
<tbody id="tbody_signoffs">
{% for group in signoff_groups %}
<tr class="{% cycle 'odd' 'even' %} {{ group.arch.name }} {{ group.target_repo|lower }}">
{% spaceless %}
<td>{% pkg_details_link group.package %} {{ group.version }}</td>
<td>{{ group.arch.name }}</td>
<td>{{ group.target_repo }}</td>
@ -68,12 +69,13 @@ <h3>Filter Displayed Signoffs</h3>
{% endif %}
{% endif %}
<td>{% include "packages/signoff_cell.html" %}</td>
<td class="wrap">{% if not group.default_spec %}{% with group.specification as spec %}
{% if spec.required != 2 %}Required signoffs: {{ spec.required }}<br/>{% endif %}
{% if not spec.enabled %}Signoffs are not currently enabled<br/>{% endif %}
{% if spec.known_bad %}Package is known to be bad<br/>{% endif %}
{{ spec.comments|default:""|linebreaksbr }}
<td class="wrap">{% if not group.default_spec %}{% with group.specification as spec %}{% comment %}
{% endcomment %}{% if spec.required != 2 %}Required signoffs: {{ spec.required }}<br/>{% endif %}{% comment %}
{% endcomment %}{% if not spec.enabled %}Signoffs are not currently enabled<br/>{% endif %}{% comment %}
{% endcomment %}{% if spec.known_bad %}Package is known to be bad<br/>{% endif %}{% comment %}
{% endcomment %}{{ spec.comments|default:""|linebreaksbr }}
{% endwith %}{% endif %}</td>
{% endspaceless %}
</tr>
{% endfor %}
</tbody>