diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-03 16:46:20 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-03 16:46:20 (GMT) |
commit | 7525ab4a03bfe3fa638f9998cdee93fbfe364853 (patch) | |
tree | 28356ac15fef99669be4b88bf7d45ae698e71f5f /program/templates/v2/host_detail.html | |
parent | daacb16087c0242a1941f293144ef88566b6b550 (diff) |
v2/templates: whitespace fixes
Diffstat (limited to 'program/templates/v2/host_detail.html')
-rw-r--r-- | program/templates/v2/host_detail.html | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/program/templates/v2/host_detail.html b/program/templates/v2/host_detail.html index a224635..792a0a3 100644 --- a/program/templates/v2/host_detail.html +++ b/program/templates/v2/host_detail.html @@ -9,18 +9,16 @@ <div id="shows"> <div id="shows-title">Sendungen</div> - {% for show in host.active_shows %} - <div class="show {{ show.broadcastformat.slug }}"><a href="/program/shows/{{ show.slug }}"> {{ show.name }}</a></div> - {% endfor %} +{% for show in host.active_shows %} + <div class="show {{ show.broadcastformat.slug }}"><a href="/program/shows/{{ show.slug }}"> {{ show.name }}</a></div> +{% endfor %} </div> - - {% if host.email %} - <div id="email">E-Mail Adresse: <a href="{{ host.email }}">{{ host.email }}</a></div> - {% endif %} - - {% if host.website %} - <div id="website">Website: <a href="{{ host.website }}">{{ host.website }}</a></div> - {% endif %} +{% if host.email %} + <div id="email">E-Mail Adresse: <a href="{{ host.email }}">{{ host.email }}</a></div> +{% endif %} +{% if host.website %} + <div id="website">Website: <a href="{{ host.website }}">{{ host.website }}</a></div> +{% endif %} </div> </body> |