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.
10 lines
495 B
10 lines
495 B
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% block actions %} {% endblock %}
|
|
{% block sections_nav %}
|
|
<div class="actions btn-group pull-right" role="group">
|
|
<a href="{% url 'detail_doc_adm' pk %}" class="btn btn-default">{% trans 'Inicio' %}</a>
|
|
<a href="{% url 'doc_ace_adm' pk %}" class="btn btn-default">{% trans 'Documento Acessório' %}</a>
|
|
<a href="{% url 'tramitacao_adm' pk %}" class="btn btn-default">{% trans 'Tramitação' %}</a>
|
|
</div>
|
|
{% endblock sections_nav %}
|
|
|