summary refs log tree commit diff
path: root/templates/faccet_list.html
blob: 226e684615257a59deefb912a3e85910186b4e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
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 %}