Display document urls in alphabetical order

- Legacy-Id: 14231
This commit is contained in:
Henrik Levkowetz 2017-10-30 11:07:59 +00:00
parent 0d15cb0e14
commit 8c8b5c2068

View file

@ -254,7 +254,7 @@
{% if urls %}
<table class="col-md-12 col-sm-12 col-xs-12">
<tbody>
{% for url in urls %}
{% for url in urls|dictsort:"desc" %}
<tr><td> - <a href="{{ url.url }}">{% firstof url.desc url.tag.name %}</a></td></tr>
{% endfor %}
</tbody>