Add bulk actions to the Stores admin

* Add brand.
* Set Chain.
This commit is contained in:
2013-04-08 23:45:23 +01:00
parent 36d8535d9e
commit 138f6a487f
3 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{% extends "admin/base_site.html" %}
{% block content %}
<p>Set the store's chain to:</p>
<form action="" method="post">
{{ chain_form }}
<p>The following stores will be set:</p>
<ul>{{ stores|unordered_list }}</ul>
<input type="hidden" name="action" value="set_chain" />
<input type="submit" name="apply" value="Apply tag" />
{% csrf_token %}
</form>
{% endblock %}