Browse Source

Fix #819

pull/886/head
LeandroRoberto 8 years ago
parent
commit
378758eb63
  1. 3
      sapl/materia/models.py
  2. 1
      sapl/templates/materia/materialegislativa_filter.html

3
sapl/materia/models.py

@ -186,6 +186,9 @@ class MateriaLegislativa(models.Model):
verbose_name=_('Texto Original (PDF)'),
validators=[restringe_tipos_de_arquivo_txt])
texto_articulado = GenericRelation(
TextoArticulado, related_query_name='texto_articulado')
autores = models.ManyToManyField(
Autor,
through='Autoria',

1
sapl/templates/materia/materialegislativa_filter.html

@ -63,6 +63,7 @@
<strong>Data da última Tramitação:</strong> &nbsp;{{m.tramitacao_set.last.data_tramitacao|default_if_none:"Não Informada"}}</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 %}
<p></p>
</tr>
{% endfor %}

Loading…
Cancel
Save