35 lines
915 B
HTML
35 lines
915 B
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Drafts - Search{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» Drafts
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module draft-container">
|
|
<h2>Draft - Search</h2>
|
|
<form id="draft-search-form" enctype="multipart/form-data" action="" method="post">{% csrf_token %}
|
|
<table id="draft-search-table" class="full-width amstable">
|
|
{{ form.as_table }}
|
|
</table>
|
|
|
|
{% include "includes/buttons_search.html" %}
|
|
|
|
</form>
|
|
|
|
<div class="inline-group">
|
|
<h2>Search Results</h2>
|
|
{% include "includes/draft_search_results.html" %}
|
|
{% if not_found %}{{ not_found }}{% endif %}
|
|
</div> <!-- inline-group -->
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|