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.
29 lines
760 B
29 lines
760 B
{% extends "materia/materialegislativa_detail.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
{% block actions %} {% endblock %}
|
|
{% block detail_content %}
|
|
<fieldset>
|
|
<legend>Matéria Legislativa</legend>
|
|
{% include "materia/resumo_detail_materia.html" %}
|
|
|
|
<fieldset>
|
|
<legend>Despachos</legend>
|
|
<table class="table table-striped table-bordered">
|
|
<thead class="thead-default">
|
|
<tr>
|
|
<th>Comissão</th>
|
|
<th>Sigla</th>
|
|
</tr>
|
|
</thead>
|
|
{% for d in despachos %}
|
|
<tr>
|
|
<td><a href="{% url 'despacho_inicial_edit' object.id d.id %}">{{d.comissao.nome}}</a></td>
|
|
<td>{{d.comissao.sigla}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</fieldset>
|
|
{% crispy form %}
|
|
</fieldset>
|
|
{% endblock %}
|
|
|