summaryrefslogtreecommitdiff
path: root/django-nova/src/django_nova/templates/admin/django_nova/project/user_list.html
blob: 4bd59427e1531f85103c6fe6debe6897b3091b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% extends "admin/django_nova/project/base_projects.html" %}
{% block extrahead %}
    {{ block.super }}
{% endblock %}

{% block breadcrumbs %}
<div class="breadcrumbs">
  <a href="/admin">Home</a> &rsaquo;
  Global Roles
</div>
{% endblock %}

{% block innercontent %}
   <h1>Select a User</h1>

    <table cellspacing="0" style="margin-top: 20px;">
        <thead>
            <tr>
                <th>Username</th>
                <th>Global Roles</th>
                <th>Actions</th>
            </tr>
        </thead>
        {% for user in users %}
            <tr class="{% cycle 'row1' 'row2' %}">
                <td>
                    {{user.username}}
                </td>
                <td>
                    (temporarily hidden)
                    {#user.roles#}
                </td>
                <td>
                    <a href="{%url admin_user_roles user.username %}">Edit</a>
                </td>
            </tr>
        {% endfor %}
    </table>
{% endblock %}