If the name attached to an additional-info URL for a group is blank, show the URL instead. Fixes #1523 and #1657. Commit ready for merge.

- Legacy-Id: 9514
This commit is contained in:
Robert Sparks 2015-04-16 19:07:59 +00:00
parent d1d731838f
commit 777d610806

View file

@ -63,7 +63,7 @@
<th>More info</th>
<td>
{% for url in urls %}
<a href="{{ url.url }}">{{ url.name }}</a>{% if not forloop.last %}<br>{% endif %}
<a href="{{ url.url }}">{% firstof url.name url.url %}</a>{% if not forloop.last %}<br>{% endif %}
{% endfor %}
</td>
{% endif %}