20 lines
463 B
HTML
20 lines
463 B
HTML
{% load i18n %}
|
|
|
|
{% with object.track as track %}
|
|
<span class="has-text-info is-size-5">♬</span>
|
|
<span>{{ track.title }}</span>
|
|
{% with track.artist as artist %}
|
|
{% with track.info as info %}
|
|
<span class="has-text-grey-dark has-text-weight-light">
|
|
{% blocktrans %}
|
|
by {{ artist }}
|
|
{% endblocktrans %}
|
|
{% if info %}
|
|
({% blocktrans %}<i>{{ info }}</i>{% endblocktrans %})
|
|
{% endif %}
|
|
</span>
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
|