summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/admin/change_parent.html
blob: dab4eb5ba426aa475dbd9cc01aa0964842d80667 (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">
        {% csrf_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 %}