diff --git a/sigi/templates/metas/map_list.html b/sigi/templates/metas/map_list.html new file mode 100644 index 0000000..cb6b6e1 --- /dev/null +++ b/sigi/templates/metas/map_list.html @@ -0,0 +1,44 @@ +{% extends "base_report.html" %} +{% load mapa_tags %} + +{% block extra_head %} + +Lista de Casas atendidas +{% endblock %} + +{% block report %} +

Lista de Casas atendidas

+

+ + + + + + + + {% for casa in casas %} + + + + + + + {% endfor %} +
Casa LegislativaEstadoRegiãoServiços
{{ casa.nome }}{{ casa.municipio.uf.nome }}{{ casa.municipio.uf.get_regiao_display }}
    {{ casa|map_desc_serv }}
+{% endblock %} + + \ No newline at end of file diff --git a/sigi/templates/metas/map_sum.html b/sigi/templates/metas/map_sum.html new file mode 100644 index 0000000..13cc73e --- /dev/null +++ b/sigi/templates/metas/map_sum.html @@ -0,0 +1,98 @@ +{% extends "base_report.html" %} + +{% block extra_head %} + +Sumário da atuação do Interlegis +{% endblock %} + +{% block report %} +

Sumário da atuação do Interlegis

+

+ + + + + + + + + + {% for servico in servicos %} + + {% endfor %} + {% for projeto in projetos %} + + {% endfor %} + {% for projeto in projetos %} + + {% endfor %} + + + + {% for r_sigla, regiao in result.iteritems %} + + + {% for sigla, qtde in regiao.servicos.iteritems %} + + {% endfor %} + {% for sigla, qtde in regiao.convenios.iteritems %} + + {% endfor %} + {% for sigla, qtde in regiao.equipadas.iteritems %} + + {% endfor %} + {% for sigla, qtde in regiao.diagnosticos.iteritems %} + + {% endfor %} + + {% for uf_id, uf in regiao.ufs.iteritems %} + + + {% for sigla, qtde in uf.servicos.iteritems %} + + {% endfor %} + {% for sigla, qtde in uf.convenios.iteritems %} + + {% endfor %} + {% for sigla, qtde in uf.equipadas.iteritems %} + + {% endfor %} + {% for sigla, qtde in uf.diagnosticos.iteritems %} + + {% endfor %} + + {% endfor %} + {% endfor %} + + + {% for sigla, qtde in tot_servicos.iteritems %} + + {% endfor %} + {% for sigla, qtde in tot_convenios.iteritems %} + + {% endfor %} + {% for sigla, qtde in tot_equipadas.iteritems %} + + {% endfor %} + {% for sigla, qtde in tot_diagnosticos.iteritems %} + + {% endfor %} + +
Região / EstadoServiços SEITConveniadasEquipadasDiagnósticos
{{ servico.nome }}{{ projeto.sigla }}{{ projeto.sigla }}Em andamentoPublicados
{{ regiao.nome }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}
{{ uf.nome }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}
Total{{ qtde|default:"-" }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}{{ qtde|default:"-" }}
+{% endblock %} + + \ No newline at end of file