|
|
@ -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:""}} </p> |
|
|
|