source: asadb/template/groups/group_search.html

space-accessstablestage
Last change on this file was d1a4706, checked in by Alex Dehnert <adehnert@…>, 14 years ago

Make single result search go straight to DB entry

Resolves ASA Trac #85.

  • Property mode set to 100644
File size: 640 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Search Groups{% endblock %}
4{% block content %}
5
6<h1>Search Groups</h1>
7
8<form action="" method="get">
9    <table class='pretty-table'>
10    {{ filter.form.as_table }}
11    </table>
12    <input type="submit" name="group-goto" value="Show Group Information" title="If exactly one group matches, go directly to that group's database entry. Otherwise, show the group list." />
13    <input type="submit" name="group-list" value="Show Group List" />
14    {% if perms.groups.view_signatories %}
15    <input type="submit" name="signatories" value="Show Signatories" />
16    {% endif %}
17</form>
18
19{% endblock %}
Note: See TracBrowser for help on using the repository browser.