mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
7 changed files with 73 additions and 121 deletions
@ -0,0 +1,10 @@ |
|||||
|
CasaLegislativa: |
||||
|
Casa Legislativa: |
||||
|
- codigo:2 nome sigla |
||||
|
- endereco:8 cep |
||||
|
- municipio:10 uf |
||||
|
- telefone fax |
||||
|
- logotipo |
||||
|
- endereco_web |
||||
|
- email |
||||
|
- informacao_geral |
@ -1,8 +0,0 @@ |
|||||
{% extends "crud/detail.html" %} |
|
||||
{% load i18n %} |
|
||||
{% load crispy_forms_tags %} |
|
||||
{% block actions %} {% endblock %} |
|
||||
|
|
||||
{% block detail_content %} |
|
||||
{% crispy form %} |
|
||||
{% endblock detail_content %} |
|
@ -0,0 +1,38 @@ |
|||||
|
{% extends "crud/list.html" %} |
||||
|
{% load i18n %} |
||||
|
|
||||
|
{% block base_content %} |
||||
|
{% if not rows %} |
||||
|
<p>{{ NO_ENTRIES_MSG }}</p> |
||||
|
<div class="actions btn-group pull-right" role="group"> |
||||
|
<a href="{{ view.create_url }}" class="btn btn-default"> |
||||
|
{% blocktrans with verbose_name=view.verbose_name %} Adicionar {{ verbose_name }} {% endblocktrans %} |
||||
|
</a> |
||||
|
</div> |
||||
|
{% else %} |
||||
|
<table class="table table-striped table-hover"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
{% for name in headers %} |
||||
|
<th>{{ name }}</th> |
||||
|
{% endfor %} |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for value_list in rows %} |
||||
|
<tr> |
||||
|
{% for value, href in value_list %} |
||||
|
<td> |
||||
|
{% if href %} |
||||
|
<a href="{{ href }}">{{ value }}</a> |
||||
|
{% else %} |
||||
|
{{ value|safe }} |
||||
|
{% endif %} |
||||
|
</td> |
||||
|
{% endfor %} |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
||||
|
{% endif %} |
||||
|
{% endblock %} |
Loading…
Reference in new issue