diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-29 12:22:19 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-05-28 20:17:37 (GMT) |
commit | dde04a95dcb76b765b8c66775a6ee242d3c316c4 (patch) | |
tree | 9dd6feef40534dae4f515dc6d24b7fc1ea29acca /program/templates/v2/timeslot_detail.html | |
parent | 8154c30318127e0491786b65975bee808cd8e27b (diff) |
add show and note images based on S3 storage
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..f1e65b4 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/notes/{{ timeslot.note.image }}"></div> +{% endif %} {% endif %} </div> |