diff options
author | Matt Arnold | 2025-04-11 01:33:39 -0400 |
---|---|---|
committer | Matt Arnold | 2025-04-11 01:33:39 -0400 |
commit | dc557895b1bd517bbdc2821a79f2be12624010d6 (patch) | |
tree | 39ad52fae6c5688720f36d608e001c994a76d96f /templates/faccet_list.html | |
parent | c51aebd896459f65c675d719347f60fc3aefa781 (diff) |
Faccets phase 1 changes, to include
Add a view for a faccets details
Diffstat (limited to 'templates/faccet_list.html')
-rw-r--r-- | templates/faccet_list.html | 12 |
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 |