Browse Source

Adiciona Apresentacao em listagem de materias legislativas

pull/906/head
Edward Ribeiro 8 years ago
parent
commit
50f9411cdb
  1. 7
      sapl/templates/materia/materialegislativa_filter.html

7
sapl/templates/materia/materialegislativa_filter.html

@ -35,11 +35,16 @@
{% for m in page_obj %}
<tr>
<td>
<strong><a href="{% url 'materia:materialegislativa_detail' m.id %}">{{m.tipo.sigla}} {{m.numero}}/{{m.ano}} - {{m.tipo}}</strong></a></br>
<strong><a href="{% url 'materia:materialegislativa_detail' m.id %}">{{m.tipo.sigla}} {{m.numero}}/{{m.ano}} - {{m.tipo}}</strong></a>
</br>
<strong>Ementa:</strong>&nbsp;{{ m.ementa|safe }}
{% if m.texto_original %}</br></br><strong><a href="{{m.texto_original.url}}">Texto Original</a></strong>{% endif %}
{% if m.texto_articulado.exists %}</br></br><strong><a href="{% url 'sapl.materia:materia_ta' m.id%}">Texto Articulado</a></strong>{% endif %}
</br>
{% if m.data_apresentacao %}
<strong>Apresentação: </strong>{{ m.data_apresentacao }}
</br>
{% endif %}
<strong>Autores:</strong>
{% for a in m.autoria_set.all %}
{% if not forloop.first %}

Loading…
Cancel
Save