Files
vapemap/app/stores/templates/admin/set_country.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 %}