Skip to content

Instantly share code, notes, and snippets.

@luxu
Created October 28, 2022 02:38
Show Gist options
  • Save luxu/5642654dae6c344e7c521dfb752d6af8 to your computer and use it in GitHub Desktop.
Save luxu/5642654dae6c344e7c521dfb752d6af8 to your computer and use it in GitHub Desktop.
<div class="container">
<form action="{% url 'estados' %}" method="post">
{% csrf_token %}
<select name="regiao_selecionada" id="regiao_selecionada">
{% for indice, regioes in regioes.items %}
<option value="{{ regioes.id }}">{{ regioes.nome }}</option>
{% endfor %}
</select>
<button type="submit">Pesquisar</button>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment