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
470 B
10 lines
470 B
9 years ago
|
{% extends "crud/detail.html" %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block actions %}
|
||
|
<div class="actions btn-group pull-right" role="group">
|
||
|
<a href="{% url 'parlamentares:composicaocoligacao_list' object.pk %}" class="btn btn-default">{% trans 'Ver Composição' %}</a>
|
||
|
<a href="{{ view.update_url }}" class="btn btn-default">{% trans 'Editar' %}</a>
|
||
|
<a href="{{ view.delete_url }}" class="btn btn-default">{% trans 'Excluir' %}</a>
|
||
|
</div>
|
||
|
{% endblock actions %}
|