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.
14 lines
405 B
14 lines
405 B
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
{% block extra_actions %}
|
|
{% if 'parlamentares.can_vote' in request.user.get_all_permissions %}
|
|
<div class="actions btn-group btn-group-sm" role="group">
|
|
<a href="{% url 'sapl.painel:voto_individual' object.pk %}" class="btn btn-default">
|
|
Votar Matéria
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock extra_actions %}
|
|
|