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.
15 lines
608 B
15 lines
608 B
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% block actions %}
|
|
{% load common_tags %}
|
|
|
|
<div class="actions btn-group float-right" role="group">
|
|
<a href="{% url 'sapl.protocoloadm:documentoadministrativo_detail' root_pk %}" class="btn btn-outline-primary">{% trans 'Início' %}</a>
|
|
{% if perms|get_change_perm:view %}
|
|
<a href="{{ view.update_url }}" class="btn btn-outline-primary">{% trans 'Editar' %}</a>
|
|
{% endif %}
|
|
{% if perms|get_delete_perm:view %}
|
|
<a href="{{ view.delete_url }}" class="btn btn-outline-primary">{% trans 'Excluir' %}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock actions %}
|
|
|