forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
34 lines (25 loc) · 866 Bytes
/
search.html
File metadata and controls
34 lines (25 loc) · 866 Bytes
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
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Groups - Search{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» Groups
{% endblock %}
{% block content %}
<div class="module group-container">
<h2>Groups - Search</h2>
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
<table class="full-width amstable">
{{ form.as_table }}
</table>
{% include "includes/buttons_search.html" %}
</form>
<div class="inline-related">
<h2>Search Results</h2>
{% include "includes/group_search_results.html" %}
{% if not_found %}{{ not_found }}{% endif %}
</div> <!-- inline-group -->
</div> <!-- module -->
{% endblock %}