mirror of https://github.com/interlegis/sigi.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.
24 lines
715 B
24 lines
715 B
{% extends 'base_report.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block pagesize %}{{ pagesize }}{% endblock pagesize %}
|
|
{% block pagemargin %}4cm {{ pagemargin }}cm {{ pagemargin }}cm 2cm{% endblock pagemargin %}
|
|
|
|
{% block report %}
|
|
{% for convite in evento.convite_set.all %}
|
|
{% with convite.casa as casa %}
|
|
{% for nome in convite.nomes_participantes.splitlines %}
|
|
{% block text_body %}{% endblock %}
|
|
<pdf:nextpage />
|
|
{% endfor %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{%block page_foot%}
|
|
<table>
|
|
<tr>
|
|
<td class="footer-left">{% trans 'Emissão:' %} {% now "d/m/Y H:i:s" %}</td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|
|
|