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.
9 lines
361 B
9 lines
361 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_cadastro' legislatura_id %}" id="incluir-parlamentar" class="btn btn-default">{% trans 'Incluir Parlamentar' %}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock actions %}
|
|
|