diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-06-15 20:52:55 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-06-15 20:52:55 (GMT) |
commit | 09276cc47736785e7a2784172a2cf3663de4e57e (patch) | |
tree | 202b46bfc67595a64bda7aa4ac359e0957b09189 /program/templates/v2/timeslot_detail.html | |
parent | b2415eb92622563f567106e2c4951ed498273e53 (diff) | |
parent | 88fb9a1d5bc7dc5f22d96fcee970f4ec9f88b289 (diff) |
Merge branch 'topic/new-show-and-note-images' into stable
Diffstat (limited to 'program/templates/v2/timeslot_detail.html')
-rw-r--r-- | program/templates/v2/timeslot_detail.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/program/templates/v2/timeslot_detail.html b/program/templates/v2/timeslot_detail.html index ab3b429..81c40c7 100644 --- a/program/templates/v2/timeslot_detail.html +++ b/program/templates/v2/timeslot_detail.html @@ -32,6 +32,10 @@ {% if timeslot.note %} <div class="timeslot-note">{{ timeslot.note.content|safe }}</div> + +{% if timeslot.note.image %} + <div id="timeslot-note-image"><img src="https://images.helsinki.at/program/{{ timeslot.note.image }}"></div> +{% endif %} {% endif %} </div> |