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.
 
 
 
 
 

24 lines
771 B

{% extends "materia/proposicao_form.html" %}
{% load i18n crispy_forms_tags common_tags %}
{% block base_content %}
<div class="context-actions clearfix">
{% block actions %}{{block.super}}
<div class="actions btn-group btn-group-sm pull-right" role="group">
{% if object.texto_articulado.exists %}
<a class="btn btn-default" href="{% url 'sapl.compilacao:ta_text' object.texto_articulado.first.pk%}?back_type=history">{% trans "Texto Eletrônico da Proposição" %}</a>
{% endif %}
{% if object.texto_original %}
<a class="btn btn-default" href="{{ object.texto_original.url }}">{% trans "Texto Original da Proposição" %}</a>
{% endif %}
</div>
{% endblock actions%}
</div>
<br>
{{block.super}}
{% endblock %}