mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-24 15:19:21 +00:00
19 lines
390 B
HTML
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 %} |