mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-24 07:09:26 +00:00
19 lines
397 B
HTML
19 lines
397 B
HTML
{% 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 %} |