diff options
Diffstat (limited to 'templates/program/show_detail.html')
-rw-r--r-- | templates/program/show_detail.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html index 3a61000..661a2b5 100644 --- a/templates/program/show_detail.html +++ b/templates/program/show_detail.html @@ -39,6 +39,10 @@ <div id="description">{{ show.description|safe }}</div> + {% if show.image %} + <div id="image" style="float: right;"><img src="/program/static/{{ show.image }}" width="200" alt="image"></div> + {% endif %} + <p> {% for host in show.hosts.all %} <a href="{% url host-detail host.id %}">{{ host }}</a><br /> |