Files
vapemap/app/stores/templates/admin/add_brand.html
2013-04-08 23:45:23 +01:00

19 lines
390 B
HTML

{% extends "admin/base_site.html" %}
{% block content %}
<p>Select brand to apply:</p>
<form action="" method="post">
{{ brand_form }}
<p>The brand will be applied to:</p>
<ul>{{ stores|unordered_list }}</ul>
<input type="hidden" name="action" value="add_brand" />
<input type="submit" name="apply" value="Apply tag" />
{% csrf_token %}
</form>
{% endblock %}