diff options
Diffstat (limited to 'ishtar_common/templates/admin')
| -rw-r--r-- | ishtar_common/templates/admin/change_parent.html | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/ishtar_common/templates/admin/change_parent.html b/ishtar_common/templates/admin/change_parent.html new file mode 100644 index 000000000..8d6744cff --- /dev/null +++ b/ishtar_common/templates/admin/change_parent.html @@ -0,0 +1,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 %}  | 
