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.
32 lines
1.2 KiB
32 lines
1.2 KiB
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% load common_tags %}
|
|
|
|
{% block actions %}
|
|
<div class="actions btn-group pull-right" role="group">
|
|
<<<<<<< HEAD
|
|
{% if proposicao.data_envio %}
|
|
{% if perms|get_change_perm:view %}
|
|
<a href="{{ view.update_url }}" class="btn btn-default">{% trans 'Editar Proposição' %}</a>
|
|
{% endif %}
|
|
|
|
{% if perms|get_delete_perm:view %}
|
|
<a href="{{ view.delete_url }}" class="btn btn-default">{% trans 'Retornar Proposição Enviada' %}</a>
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
{% if perms|get_change_perm:view %}
|
|
<a href="{{ view.update_url }}" class="btn btn-default">{% trans 'Enviar/Editar Proposição' %}</a>
|
|
{% endif %}
|
|
|
|
{% if perms|get_delete_perm:view %}
|
|
<a href="{{ view.delete_url }}" class="btn btn-default">{% trans 'Excluir Proposição' %}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock actions %}
|
|
{% block extra_msg %}
|
|
{% if proposicao.data_envio and not proposicao.data_recebimento %}
|
|
<b><p align="center"><a href="" onclick="window.open('{% url 'sapl.materia:recibo-proposicao' object.pk %}','Recibo','width=1100, height=600, scrollbars=yes')">[Imprimir Recibo]</a></p></b>
|
|
{% endif %}
|
|
{% endblock extra_msg %}
|
|
|