blob: 5ab6d5b6bc18c541f5b4c5514307eec544521451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "admin/base_site.html" %}{% load i18n %}
{% block content %}
<form action="." method="post" enctype="multipart/form-data">
{% crsf_token %}
<table>
{{ change_parent_form }}
</table>
<input type="hidden" name="action" value="{{ current_action }}"/>
{% for selected in selected_items %}
<input type="hidden" name="_selected_action" value="{{ selected }}"/>
{% endfor %}
<input type="submit" name="apply" value"{% trans 'Change parent' %}"/>
</form>
{% endblock %}
|