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
30 lines (23 loc) · 907 Bytes
/
search.html
File metadata and controls
30 lines (23 loc) · 907 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static %}
{% block title %}Document Search{% endblock %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
{% endblock %}
{% block content %}
{% origin %}
<div class="col-sm-11 col-md-11 col-lg-11">
<h1>Document Search</h1>
</div>
<div class="col-sm-1 col-md-1 col-lg-1 text-right">
<h1><a href="/doc/stats/newrevisiondocevent?{{queryargs}}" class="icon-link"> <span class="small fa fa-bar-chart"> </span></a></h1>
</div>
{% include "doc/search/search_form.html" %}
{% if meta.searching %}
{% include "doc/search/search_results.html" %}
{% endif %}
{% endblock content %}
{% block js %}
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
{% endblock %}