templates/collection_element: Order episodes after links

master
Felix Stupp 2 years ago
parent 29472e42a2
commit dc0b8d0867
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -57,17 +57,17 @@
</ul>
<h2>Notes</h2>
<pre>{{ collection.notes or "" }}</pre>
<h2>Episodes</h2>
<ul>
{% for link in media_links %}
{{ macros.link_entry(link) }}
{% endfor %}
</ul>
<h2>Links</h2>
<ul>
{% for link in collection.uris|sort(attribute="uri") %}
<li>{{ link.uri | as_link }} {% if collection.uri == link.uri %}*{% endif %}</li>
{% endfor %}
</ul>
<h2>Episodes</h2>
<ul>
{% for link in media_links %}
{{ macros.link_entry(link) }}
{% endfor %}
</ul>
</body>
</html>

Loading…
Cancel
Save