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
35 lines (26 loc) · 956 Bytes
/
search.html
File metadata and controls
35 lines (26 loc) · 956 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
35
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Rolodex - Search{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» Rolodex
{% endblock %}
{% block content %}
<div class="module">
<h2>Rolodex - Search <span class="unlocked"><a href="add/" class="addlink">Add</a></span></h2>
<form id="rolodex-search-form" action="." method="post">{% csrf_token %}
<table class="full-width amstable">
<col width="200">
{{ form.as_table }}
</table>
{% include "includes/buttons_search.html" %}
</form>
</div> <!-- module -->
<div class="module">
<h2>Search Results</h2>
{% include "includes/search_results_table.html" %}
{% if not_found %}{{ not_found }}{% endif %}
</div> <!-- module -->
{% endblock %}