diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-06-16 15:03:48 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-06-16 15:03:48 (GMT) |
commit | d3f8b119175b6316bc764de64a84e7857864ffcc (patch) | |
tree | 77ce34686c9d5fb4e648da21486739c299306001 /program/templates | |
parent | 5c4a9a9cb54067bd611c7dedd81a557b92bef621 (diff) |
reorder show detail view
Diffstat (limited to 'program/templates')
-rw-r--r-- | program/templates/v2/show_detail.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/program/templates/v2/show_detail.html b/program/templates/v2/show_detail.html index 73ec5b1..f9d8e38 100644 --- a/program/templates/v2/show_detail.html +++ b/program/templates/v2/show_detail.html @@ -8,6 +8,8 @@ <h1>{{ show.name }}</h1> <div class="show"> + <div id="short-description">{{ show.short_description }}</div> + <div class="show-detail-header bf-{{ show.broadcastformat.slug }}"> <div class="show-details"> {% if show.id != 1 %} @@ -37,22 +39,20 @@ <div id="broadcastformat">{{ show.broadcastformat.format }}</div> </div> - <div id="short-description" class="documentDescription">{{ show.short_description }}</div> +{% if show.image %} + <div id="image"><img src="https://images.helsinki.at/program/{{ show.image }}"></div> +{% endif %} {% if show.description %} <div id="description">{{ show.description|safe }}</div> {% endif %} -{% if show.image %} - <div id="image"><img src="https://images.helsinki.at/program/{{ show.image }}"></div> -{% endif %} - <p> {% for host in show.hosts.all %} <a href="/program/hosts/{{ host.id }}">{{ host }}</a><br/> {% endfor %} {% if show.email %} - <strong>Email:</strong> <a href="mailto:{{ show.email }}">{{ show.email }}</a><br/> + <strong>E-Mail:</strong> <a href="mailto:{{ show.email }}">{{ show.email }}</a><br/> {% endif %} {% if show.website %} <strong>Website:</strong> <a href="{{ show.website }}">{{ show.website }}</a><br/> |