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