fix: multiple subjects not displayed in one row

This commit is contained in:
Christoph Ladurner
2023-12-06 22:57:58 +01:00
parent 3e10059a6f
commit 7da3f16b00

View File

@@ -63,22 +63,18 @@
</a> </a>
</p> </p>
<div class="ui grid"> <div class="ui">
<div class="two column row"> {%- for subject in r.metadata.subjects %}
<div class="left floated column"> <span class="ui tiny label">{{ subject }}</span>
{%- for subject in r.metadata.subjects %} {%- endfor %}
<div class="ui tiny label">{{ subject }}</div> <div>
{%- endfor %} <small>
<div> {#
<small> {% trans user=userprofile, date=creation_date | dateformat("long")%}
{# Uploaded on {{date}}
{% trans user=userprofile, date=creation_date | dateformat("long")%} {% endtrans %}
Uploaded on {{date}} #}
{% endtrans %} </small>
#}
</small>
</div>
</div>
</div> </div>
</div> </div>
</article> </article>