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.
11 lines
597 B
11 lines
597 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 'protocolo' %}" class="btn btn-default">{% trans 'Pesquisa Protocolo' %}</a>
|
|
<a href="{% url 'protocolar_doc' %}" class="btn btn-default">{% trans 'Protocolar Documento' %}</a>
|
|
<a href="{% url 'protocolar_mat' %}" class="btn btn-default">{% trans 'Protocolar Matéria' %}</a>
|
|
<a href="{% url 'anular_protocolo' %}" class="btn btn-default">{% trans 'Anular Protocolo' %}</a>
|
|
</div>
|
|
{% endblock sections_nav %}
|
|
|