Sistema de Informações Gerenciais do Interlegis
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.
 
 
 
 
 
 

30 lines
836 B

{% extends "admin/base_site.html" %}
{% load i18n crispy_forms_tags %}
{% block content %}
<table class="table table-striped table-bordered">
<thead class="thead-default">
<tr>
<th>Dados da Casa Legislativa</th>
<th>Convênio(s) da Casa Legislativa</th>
</tr>
</thead>
<tr>
<td>
<b>Casa:</b> {{casa}}<br />
<b>CNJ:</b> {{casa.cnpj}}<br />
<b>Município:</b> {{casa.municipio}}<br />
<b>Email:</b> {{casa.email}}<br />
<b>Cep:</b> {{casa.cep}}<br />
<b>Página:</b> {{casa.pagina_web}}<br />
<b>Telefone:</b> {{casa.telefone}}<br />
</td>
<td>
{% for c in convenios %}
{{c}}<br />
{% endfor %}
</td>
</tr>
</table>
{% crispy form %}
{% endblock %}