collection_list.htm: Add tags as column

master
Felix Stupp 3 years ago
parent 53cc489026
commit 835ce40f89
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -18,6 +18,7 @@
<th>To Watch</th>
<th>Id</th>
<th>Title</th>
<th>Tags</th>
</tr>
{% for collection in collection_list %}
{% set stats = collection.stats %}
@ -37,6 +38,9 @@
{{ collection.id }}
</td>
<td><a href="{{ collection.info_link }}">{{ collection.title }}</a></td>
<td>
{{ collection.assigned_tags | map(attribute="title") | sort | join(" | ") }}
</td>
</tr>
{% endfor %}
</table>

Loading…
Cancel
Save