diff options
Diffstat (limited to 'nop/templates')
-rw-r--r-- | nop/templates/nop_form.html | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/nop/templates/nop_form.html b/nop/templates/nop_form.html index 1144692..b9be92f 100644 --- a/nop/templates/nop_form.html +++ b/nop/templates/nop_form.html @@ -36,11 +36,21 @@ <ul> {% for track in nowplaying %} <li> - <small>{{track.datetime}}:</small> - <strong>{{track.artist}}</strong> - - {{track.title}} - - {{track.album}} - in der Sendung <em>{{track.showtitle}}</em> + {% if track.start or track.show %} + <small> + {% if track.start %}{{track.start}}{% endif %} + {% if track.start and track.show %},{% endif %} + {% if track.show %}Sendung {{track.show}}{% endif %} + {% if track.artist or track.title or track.album %}:{% endif %} + </small> + {% endif %} + {% if track.artist %} + <strong>{{track.artist}}</strong> + {% endif %} + {% if track.artist and track.title or track.artist and track.album %}|{% endif %} + {% if track.title %}{{track.title}}{% endif %} + {% if track.title and track.album %}|{% endif %} + {% if track.album %}{{track.album}}{% endif %} </li> {% endfor %} </ul> |