diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-22 21:49:12 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-22 21:49:12 -0500 |
commit | 3579e3cb34a53abd16da3af78be738c2a4dd0d5c (patch) | |
tree | 5cc6342b28d6047d2a4fc1669cbc05d881f5c06a | |
parent | 6d352bc62361edd4ce15189e31fccff5f0eb5e9a (diff) | |
parent | 5d74a99c6b8fbbd19ad441a74d835382025da522 (diff) |
Merge tag 'release_2013-12-14' into archweb-generic
Mostly changes related to mirror handling
-rw-r--r-- | templates/mirrors/mirror_details.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html index 09e24925..0913a506 100644 --- a/templates/mirrors/mirror_details.html +++ b/templates/mirrors/mirror_details.html @@ -71,14 +71,13 @@ <tr> <th>Downstream:</th> {% with mirror.downstream as ds_mirrors %} - <td>{% if ds_mirrors %} + <td class="wrap">{% if ds_mirrors %} {% for ds in ds_mirrors %} <a href="{{ ds.get_absolute_url }}" - title="Mirror details for {{ ds.name }}">{{ ds.name }}</a> - {% if not ds.active %}<span class="testing-dep">(inactive)</span>{% endif %} - {% if not ds.public %}<span class="testing-dep">(private)</span>{% endif %} - <br/> - {% endfor %} + title="Mirror details for {{ ds.name }}">{{ ds.name }}</a>{% comment %} + {% endcomment %}{% if not ds.active %} <span class="testing-dep">(inactive)</span>{% endif %}{% comment %} + {% endcomment %}{% if not ds.public %} <span class="testing-dep">(private)</span>{% endif %}{% comment %} + {% endcomment %}{% if not forloop.last %}, {% endif %}{% endfor %} {% else %}None{% endif %}</td> {% endwith %} </tr> |