summaryrefslogtreecommitdiff
path: root/templates/apps/consumer/list.html
blob: 8efeb424afac23d6e73b3d768dad56b5fd63b9df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% block content %}
<div id="acl" style="margin-bottom: 20px;">
    {% for c in consumers %}
    <div id="{{c.id}}">
        <h3 class="listheader">{{c}}</h3>
        <div>
            {{c.consumer_provider.description}}
        </div>
    </div>
    {% endfor %}
</div>
<ul class="ilist">
    <li class="button"><a href="/consumer/{{name.id}}/add">Add Consumer</a></li>
    {% if name %}
    <li class="button right"><input type="button" onClick="document.location='{{name.url}}'" value="Cancel"/></li>
    {% endif %}
</ul>
{% endblock %}