blob: 3822a736aa9eeb0e600299fa1de11308f51981e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "admin/base_site.html" %}{% load i18n %}
{% block content %}
<h1>{% blocktrans %}Add {{query_nb}} selected items to a crawl{% endblocktrans %}</h1>
<div id="content-main">
<form action="." method="post">
{% csrf_token %}
{{form}}
<input type="hidden" name="action" value="add_to_crawl" />
<input type="submit" name="apply" value="{% trans 'Add' %}"/>
{% for pk in items %}
<input type="hidden" name="_selected_action" value="{{ pk }}" />{% endfor %}
</form>
</div>
{% endblock %}
|