summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2021-05-28 20:34:15 (GMT)
committerChristian Pointner <equinox@helsinki.at>2021-05-28 20:34:15 (GMT)
commit02093ba844d0f2b303c519c8c49316bd45d11229 (patch)
tree0514706864ed1fb7e24954d7cd0e8e29ec4a231f
parentdde04a95dcb76b765b8c66775a6ee242d3c316c4 (diff)
fix note image urls
-rw-r--r--program/templates/v2/timeslot_detail.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/templates/v2/timeslot_detail.html b/program/templates/v2/timeslot_detail.html
index f1e65b4..81c40c7 100644
--- a/program/templates/v2/timeslot_detail.html
+++ b/program/templates/v2/timeslot_detail.html
@@ -34,7 +34,7 @@
<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>
+ <div id="timeslot-note-image"><img src="https://images.helsinki.at/program/{{ timeslot.note.image }}"></div>
{% endif %}
{% endif %}
</div>