Browse Source

Ajusta layout, das telas relacionadas a parlamentare,' ao tema do bootstrap

pull/237/head
Eduardo Edson Batista Cordeiro Alves 9 years ago
parent
commit
f4449ea893
  1. 2
      parlamentares/forms.py
  2. 12
      templates/parlamentares/parlamentares_dependentes.html
  3. 12
      templates/parlamentares/parlamentares_filiacao.html
  4. 18
      templates/parlamentares/parlamentares_list.html
  5. 12
      templates/parlamentares/parlamentares_mandato.html

2
parlamentares/forms.py

@ -167,7 +167,7 @@ class ParlamentaresForm (ModelForm):
<input type="submit"
name="remover"
id="remover"
class="button primary"
class="btn btn-warning"
value="Remover Foto"/>
{% endif %}""", ),
row14,

12
templates/parlamentares/parlamentares_dependentes.html

@ -4,17 +4,19 @@
{% block actions %}{% endblock %}
{% block detail_content %}
<strong>Parlamentar: </strong>{{ parlamentar.nome_parlamentar }}
<h2><strong>Parlamentar: </strong>{{ object.nome_parlamentar }}</h2>
<fieldset>
<fieldset>
<legend>Dependentes</legend>
<table>
<table class="table table-striped table-bordered">
<thead class="thead-default">
<tr>
<th><strong>Nome Dependente</strong></th>
<th><strong>Tipo</strong></th>
<th><strong>Data de Nascimento</strong></th>
</tr>
</thead>
{% for d in dependentes %}
<tr>
<td><a href="{% url 'parlamentares_dependentes_edit' object.id d.id %}">{{d.nome}}</a></td>
@ -23,8 +25,8 @@
</tr>
{% endfor %}
</table>
</fieldset>
</fieldset>
{% crispy form %}
{% crispy form %}
{% endblock detail_content %}

12
templates/parlamentares/parlamentares_filiacao.html

@ -4,17 +4,19 @@
{% block actions %}{% endblock %}
{% block detail_content %}
<strong>Parlamentar: </strong>{{ parlamentar.nome_parlamentar }}
<h2><strong>Parlamentar: </strong>{{ object.nome_parlamentar }}</h2>
<fieldset>
<fieldset>
<legend>Filiações</legend>
<table>
<table class="table table-striped table-bordered">
<thead class="thead-default">
<tr>
<th><strong>Partido</strong></th>
<th><strong>Data Filiação</strong></th>
<th><strong>Data Desfiliação</strong></th>
</tr>
</thead>
{% for f in filiacoes %}
<tr>
<td><a href="{% url 'parlamentares_filiacao_edit' object.id f.id %}">{{f.partido.sigla}}</a></td>
@ -23,6 +25,6 @@
</tr>
{% endfor %}
</table>
</fieldset>
{% crispy form %}
</fieldset>
{% crispy form %}
{% endblock detail_content %}

18
templates/parlamentares/parlamentares_list.html

@ -2,11 +2,11 @@
{% load i18n %}
{% load crispy_forms_tags %}
{% block detail_content %}
<fieldset>
<fieldset class="form-group">
<legend>Selecione o Período</legend>
<form method="POST">
{% csrf_token %}
<select name="periodo" onChange="form.submit();">
<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}}
@ -15,21 +15,23 @@
</select>
</form>
</fieldset>
<fieldset>
<br/>
<fieldset class="form-group">
<legend>Parlamentares</legend>
<table>
<table class="table table-striped table-bordered">
<thead class="thead-default">
<tr>
<th>Nome do Parlamentar</th>
<th>Partido</th>
<th>Ativo?</th>
</tr>
</thead>
{% for p in parlamentares %}
<tr>
<td><a href="{% url 'parlamentares_editar' p.id %}">
{{p.nome}}
</a></td>
<td>
<a href="{% url 'parlamentares_editar' p.id %}"> {{p.nome}}</a>
</td>
<td>{{p.partido}}</td>
<td>{{p.ativo|yesno:"Sim,Não"}}</td>
</tr>

12
templates/parlamentares/parlamentares_mandato.html

@ -4,12 +4,13 @@
{% block actions %}{% endblock %}
{% block detail_content %}
<strong>Parlamentar: </strong>{{ parlamentar.nome_parlamentar }}
<h2><strong>Parlamentar: </strong>{{ object.nome_parlamentar }}</h2>
<fieldset>
<fieldset>
<legend>Mandatos</legend>
<table>
<table class="table table-striped table-bordered">
<thead class="thead-default">
<tr>
<th><strong>Legislatura</strong></th>
<th><strong>Coligação</strong></th>
@ -18,6 +19,7 @@
<th><strong>Nº Votos</strong></th>
<th><strong>Observação</strong></th>
</tr>
</thead>
{% for m in mandatos %}
<tr>
<td><a href="{% url 'parlamentares_mandato_edit' object.id m.id %}">{{m.legislatura}}</a></td>
@ -29,8 +31,8 @@
</tr>
{% endfor %}
</table>
</fieldset>
</fieldset>
{% crispy form %}
{% crispy form %}
{% endblock detail_content %}

Loading…
Cancel
Save