summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/admin/change_parent.html
diff options
context:
space:
mode:
authorCefin <kevon@tuta.io>2021-10-15 16:16:59 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-10-25 17:59:03 +0200
commit177fe32c9a4fb140f99964cc3d103b1b2cced436 (patch)
tree5e1e65aa0df98faeed7dd466bb931169be911d26 /ishtar_common/templates/admin/change_parent.html
parentaba002b297a066d725ab75367ec5533dcafe16a9 (diff)
downloadIshtar-177fe32c9a4fb140f99964cc3d103b1b2cced436.tar.bz2
Ishtar-177fe32c9a4fb140f99964cc3d103b1b2cced436.zip
draft version number one
Diffstat (limited to 'ishtar_common/templates/admin/change_parent.html')
-rw-r--r--ishtar_common/templates/admin/change_parent.html17
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..5ab6d5b6b
--- /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">
+ {% 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 %}