mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-23 22:59:23 +00:00
19 lines
406 B
HTML
19 lines
406 B
HTML
{% extends "admin/base_site.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<p>Set the county's country to:</p>
|
|
|
|
<form action="" method="post">
|
|
|
|
{{ country_form }}
|
|
|
|
<p>The following counties will be set:</p>
|
|
|
|
<ul>{{ stores|unordered_list }}</ul>
|
|
|
|
<input type="hidden" name="action" value="set_country" />
|
|
<input type="submit" name="apply" value="Apply tag" />
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %} |