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
355 B
10 lines
355 B
9 years ago
|
{% extends "crud/detail.html" %}
|
||
|
{% load i18n %}
|
||
9 years ago
|
{% block actions %}
|
||
9 years ago
|
<div class="actions btn-group pull-right" role="group">
|
||
9 years ago
|
{% if legislatura_id != 0 %}
|
||
9 years ago
|
<a href="{% url 'parlamentares:parlamentar_create'%}" id="incluir-parlamentar" class="btn btn-default">{% trans 'Incluir Parlamentar' %}</a>
|
||
9 years ago
|
{% endif %}
|
||
9 years ago
|
</div>
|
||
9 years ago
|
{% endblock actions %}
|