summaryrefslogtreecommitdiff
path: root/ishtar_common/templates
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r--ishtar_common/templates/admin/merge.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/ishtar_common/templates/admin/merge.html b/ishtar_common/templates/admin/merge.html
new file mode 100644
index 000000000..98c66ad8e
--- /dev/null
+++ b/ishtar_common/templates/admin/merge.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>
+ {{ merge_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 'Merge' %}" />
+</form>
+
+{% endblock %}