Add photo visualization page

This commit is contained in:
2020-06-14 21:47:31 +02:00
parent dd7f1bab8d
commit ec1729e92c
4 changed files with 29 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Photos</h1>
{% for img_path in images %}
<img src="{{img_path|safe}}" alt="Image placeholder" id="photo" style="width: 200px"/>
{% endfor %}
{% endblock %}