summaryrefslogtreecommitdiffstats
path: root/webapp/templates/admin_groups.html
blob: 7c4eea21705d75053dfebfe14a8aa102e5588da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{%extends "admin_base.html"%}
{%block title1%}Groups{%endblock%}
{%block body%}

<h2>Groups</h2>

<p><a href="{%url codereview.people.admin_group_new%}">New Group</a></p>
<div class="change-list" style="width: inherit;">
  <table id="queues" style="width: inherit;">
    <tr>
        <th>Name</th>
        <th>Description</th>
    </tr>
    {%for group in groups%}
    <tr>
        <td><a href="{%url codereview.people.admin_group group.name%}">{{group.name}}</a></td>
        <td>{{group.comment}}</td>
    </tr>
    {%endfor%}
  </table>
</div>

{%endblock%}