mirror of https://github.com/interlegis/sapl.git
9 lines
355 B
9 lines
355 B
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% block actions %}
|
|
<div class="actions btn-group pull-right" role="group">
|
|
{% if legislatura_id != 0 %}
|
|
<a href="{% url 'parlamentares:parlamentar_create'%}" id="incluir-parlamentar" class="btn btn-default">{% trans 'Incluir Parlamentar' %}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock actions %}
|
|
|