summary refs log tree commit diff
path: root/templates/faccet_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/faccet_list.html')
-rw-r--r--templates/faccet_list.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/faccet_list.html b/templates/faccet_list.html
new file mode 100644
index 0000000..226e684
--- /dev/null
+++ b/templates/faccet_list.html
@@ -0,0 +1,12 @@
+{% extends 'base.html' %}
+
+{% block content %}
+<div class="container">
+    <h2>Faccets of {{current_user.username}}</h2>
+    <ul>
+        {% for light in faccet %}
+        <li><a href="{{ url_for('details', light=light.name )}}">{{ light.name }}</a> </li>
+        {% endfor %}
+    </ul>
+</div>
+{% endblock %}
\ No newline at end of file