Browse Source

Refatorar template pdf

pull/3103/head
João Rodrigues 6 years ago
parent
commit
91253cec78
  1. 71
      sapl/templates/relatorios/relatorio_materias_por_autor.html

71
sapl/templates/relatorios/relatorio_materias_por_autor.html

@ -5,17 +5,17 @@
{% block content %}
<h2>Matérias por Autor</h2>
<b>PARÂMETROS DE PESQUISA:<br /></b>
&emsp;Autor: {{ autor }}<br />
&emsp;Tipo de matéria: {{ tipo }}<br />
&emsp;Data de apresentação: {{periodo}}<br /><br /><br/>
{% if object_list|length %}
<table class="table table-bordered table-hover">
<thead class="thead-default" >
<tr class="active"><th colspan="2" class="text-center">QUADRO GERAL</th></tr>
<b>PARÂMETROS DE PESQUISA:<br /></b>
&emsp;Autor: {{ autor }}<br />
&emsp;Tipo de matéria: {{ tipo }}<br />
&emsp;Data de apresentação: {{periodo}}<br /><br /><br/>
{% if materias_resultado|length %}
<table class="table table-bordered table-hover">
<thead class="thead-default">
<tr class="active">
<th colspan="2" class="text-center">QUADRO GERAL</th>
</tr>
<tr class="active">
<th>Tipo Matéria</th>
<th>Quantidade</th>
@ -30,35 +30,26 @@
{% endfor %}
</tbody>
</table>
</br>
</br>
{% if object_list|length %}
{% for materia in object_list %}
{% ifchanged materia.autoria_set.first.autor %}
</br>
<strong>Autor: {{ materia.autoria_set.first.autor }}</strong>
</br>
</br>
{% endifchanged %}
<div style="border-top: 1px solid black;margin-bottom:0.3cm">
<strong>Matéria:</strong> {{materia.tipo.descricao}} {{materia.numero}}/{{materia.ano}}
</br>
<strong>Ementa:</strong> {{materia.ementa}}
</br>
<strong>Coautor(es):</strong> {% if materia.autoria_set.first != materia.autoria_set.last %}
{% for autor in materia.autoria_set.all %}
{% if not autor.primeiro_autor %}
{{ autor.autor }}<br />
{% endif %}
{% endfor %}
{% endif %}
</br>
</div>
</br></br>
{% if materias_resultado|length %}
{% for materia in materias_resultado %}
<strong>Matéria:</strong> {{materia.tipo.descricao}} {{materia.numero}}/{{materia.ano}}
</br>
<strong>Ementa:</strong>
</br>
{{materia.ementa}}
</br>
<strong>Autor(es):</strong>
</br>
{% for autor in materia.autoria_set.all %}
{% if not autor.primeiro_autor %}
{{ autor.autor }}<br />
{% else %}
<u><i>{{ autor.autor }}</i></u><br />
{% endif %}
{% endfor %}
</br>
<div style="border-top: 1px solid black;margin-bottom:0.3cm"></div>
{% endfor %}
{% endif %}

Loading…
Cancel
Save