Sistema de Apoio ao Processo Legislativo
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.
|
|
|
{% extends "materia/materialegislativa_detail.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% block detail_content %}
|
|
|
|
<fieldset>
|
|
|
|
<legend>Matéria Legislativa</legend>
|
|
|
|
<ul class="small-block-grid-3 medium-block-grid-3 large-block-grid-3">
|
|
|
|
<li>Tipo: <b>{{materialegislativa.tipo.sigla}}</b></li>
|
|
|
|
<li>Número: <b>{{materialegislativa.numero}}</b></li>
|
|
|
|
<li>Ano: <b>{{materialegislativa.ano}}</b></li>
|
|
|
|
</ul>
|
|
|
|
Ementa: <b>{{materialegislativa.ementa}}</b>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend>Documentos Acessório</legend>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Nome</th>
|
|
|
|
<th>Tipo</th>
|
|
|
|
<th>Data</th>
|
|
|
|
<th>Autor</th>
|
|
|
|
</tr>
|
|
|
|
{% for d in docs %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{% url 'documento_acessorio_edit' materialegislativa.id d.id %}">{{d.nome}}</a></td>
|
|
|
|
<td>{{d.tipo.descricao}}</td>
|
|
|
|
<td>{{d.data|date:'d/m/Y'}}</td>
|
|
|
|
<td>{{d.autor}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
{% crispy form %}
|
|
|
|
</fieldset>
|
|
|
|
{% endblock %}
|