Browse Source

Imprimir na capa do diagnóstico os dados do contato Interlegis como responsável pela informação

stable/1.0
Sesostris Vieira 12 years ago
parent
commit
9287abca07
  1. BIN
      media/images/logo-interlegis-grande.jpg
  2. 18
      sigi/templates/diagnosticos/diagnostico_pdf.html

BIN
media/images/logo-interlegis-grande.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 14 KiB

18
sigi/templates/diagnosticos/diagnostico_pdf.html

@ -3,7 +3,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Title</title>
<title>Diagnóstico em PDF</title>
<style type="text/css">
div#capa h3 {
text-align: center;
@ -121,6 +121,22 @@
<p>{{membro}}</p>
{% endfor %}
{% for funcionario in funcionarios %}
{% if funcionario.setor == 'contato_interlegis' %}
<h3>Nome do responsável pelas Informações:</h3>
<p>{{funcionario.nome|default_if_none:""}}</p>
<h3>Cargo / função do responsável pelas informações:</h3>
<p>{{funcionario.cargo|default_if_none:""}} / {{funcionario.funcao|default_if_none:""}}</p>
<h3>E-mail do responsável pelas informações:</h3>
<p>{{funcionario.email|default_if_none:""}}</p>
{% for telefone in funcionario.telefones.all %}
<h3>Telefone {{telefone.get_tipo_display}} do responsável pelas informações</h3>
<p>{{telefone}}</p>
{% endfor %}
{% endif %}
{% endfor %}
</table>
<!--
<h3>Cargo do Responsável pelas Informações:</h3>
<p>{{diagnostico.responsavel.cargo|default_if_none:""}}&nbsp;</p>

Loading…
Cancel
Save