diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-10-27 14:20:12 +0000 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | bc543ff77baa143295bd1f669c8cbbc6de8c9ebc (patch) | |
tree | c9ffc1ad841b38214b7b741e13551230eec23e11 /ishtar_common/templates | |
parent | defef49bacefb3e8bd1b8516ee1e3f481b46bed5 (diff) | |
download | Ishtar-bc543ff77baa143295bd1f669c8cbbc6de8c9ebc.tar.bz2 Ishtar-bc543ff77baa143295bd1f669c8cbbc6de8c9ebc.zip |
Admin - list action: change parent (refs #4698)
Diffstat (limited to 'ishtar_common/templates')
-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 %} |