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.
81 lines
2.4 KiB
81 lines
2.4 KiB
{% load i18n %}
|
|
{% load tz %}
|
|
{% load crispy_forms_tags %}
|
|
{% load common_tags %}
|
|
{% load webpack_static from webpack_loader %}
|
|
|
|
{% block detail_content %}
|
|
<style>
|
|
table {
|
|
width: 100%;
|
|
}
|
|
th, td {
|
|
padding: 5px;
|
|
}
|
|
</style>
|
|
|
|
<div align="center">
|
|
<input type="submit" value="Imprimir" onclick="window.print();" class="btn btn-success"/>
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<img height="100" width="100"
|
|
src="{% if logotipo %}{{ MEDIA_URL }}{{ logotipo }}{% else %}{% webpack_static 'img/logo.png' %}{% endif %}"
|
|
alt="Logotipo"
|
|
class="img-responsive visible-lg-inline-block vcenter">
|
|
<div>
|
|
</td>
|
|
<td>
|
|
{% if nome %}
|
|
<b>{{ nome }} {% trans 'de' %} {{ municipio }} - {{ uf }}</b>
|
|
{% else %}
|
|
<b>{% trans 'Sem Nome Cadastrado' %}</b>
|
|
{% endif %}
|
|
<br />
|
|
{% trans 'Sistema de Apoio ao Processo Legislativo' %}
|
|
</td>
|
|
</tr>
|
|
<tr> <td colspan="2" align="center"><b>RECIBO DE ENVIO DE PROPOSIÇÃO</b></td> </tr>
|
|
</table>
|
|
|
|
<br /><br />
|
|
|
|
<table frame="box">
|
|
<tr>
|
|
<td>Código do Documento: <b>{{hash}}</b></td>
|
|
<td>Tipo de Proposição: <b>{{proposicao.tipo.descricao}}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Autor: <b>{{ proposicao.autor }}</b></td>
|
|
<td>Enviada por:
|
|
{# TODO remover condicional apos migrar as acoes para os devidos campos#}
|
|
{% if proposicao.usuario_envio %}
|
|
<b>{{ proposicao.usuario_envio|format_user }}</b>
|
|
{% else %}
|
|
<b>{{ proposicao.user }}</b>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Descrição: <b>{{proposicao.descricao}}</b></td>
|
|
<td>Data de Envio: <b>{{proposicao.data_envio|localtime|date:"d/m/Y H:i:s"}}</b></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br /><br />
|
|
|
|
<table>
|
|
<tr>
|
|
<td align="center">
|
|
Declaro que o conteúdo do texto impresso em anexo é idêntico ao conteúdo enviado eletronicamente por meio do sistema SAPL para esta proposição.
|
|
</td>
|
|
</tr>
|
|
<tr> <td align="center"><br /><br /><br /><b>________________________________________________________________</b></td> </tr>
|
|
<tr> <td align="center">{{proposicao.autor}}</td> </tr>
|
|
<tr> <td align="center"><img src="{{barcode}}"width="600px" height="50px"/></td> </tr>
|
|
</table>
|
|
{% endblock detail_content %}
|
|
|