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 "crud/detail.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block actions %}
|
|
|
|
<dl class="sub-nav right">
|
|
|
|
<dd><a href="{% url 'ta_edit' object.pk %}" class="button">{% trans 'Editar' %}</a></dd>
|
|
|
|
<dd><a href="{% url 'ta_delete' object.pk %}" class="button alert">{% trans 'Excluir' %}</a></dd>
|
|
|
|
</dl>
|
|
|
|
{% endblock actions %}
|
|
|
|
{% block sections_nav %}
|
|
|
|
<dl class="sub-nav left">
|
|
|
|
<dd><a href="{% url 'normajuridica:detail' object.pk %}" class="button secondary">{% trans 'Início' %}</a></dd>
|
|
|
|
<dd><a href="{% url 'norma_ta' object.pk %}" class="button secondary">{% trans 'Texto' %}</a></dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
{% endblock sections_nav %}
|