mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
487 B
18 lines
487 B
{% extends "crud/list.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
{% block extra_content %}
|
|
<fieldset class="form-group">
|
|
<legend>Selecione o Período</legend>
|
|
<form method="GET">
|
|
<select name="periodo" class="form-control" onChange="form.submit();">
|
|
{% for l in legislaturas %}
|
|
<option value="{{l.id}}" {% if l.id == legislatura_id %} selected {% endif %}>
|
|
{{l}}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</form>
|
|
</fieldset>
|
|
<br/>
|
|
{% endblock %}
|
|
|