diff options
-rw-r--r-- | program/templates/v2/show_detail.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/program/templates/v2/show_detail.html b/program/templates/v2/show_detail.html index f9d8e38..7fbcf9f 100644 --- a/program/templates/v2/show_detail.html +++ b/program/templates/v2/show_detail.html @@ -48,9 +48,13 @@ {% endif %} <p> -{% for host in show.hosts.all %} - <a href="/program/hosts/{{ host.id }}">{{ host }}</a><br/> -{% endfor %} +{% if show.hosts.all %} + <strong>Redaktion:</strong> +{% for host in show.hosts.all %} + <a href="/program/hosts/{{ host.id }}">{{ host }}</a>{% if not forloop.last %}, {% endif %} +{% endfor %} + <br/> +{% endif %} {% if show.email %} <strong>E-Mail:</strong> <a href="mailto:{{ show.email }}">{{ show.email }}</a><br/> {% endif %} |