mirror of https://github.com/interlegis/sigi.git
Breno Teixeira
11 years ago
17 changed files with 259 additions and 29 deletions
@ -0,0 +1,32 @@ |
|||||
|
{% load i18n log %} |
||||
|
<div class="module" id="recent-actions-module"> |
||||
|
<h2>Atividades recentes</h2> |
||||
|
<h3>Últimas atividades</h3> |
||||
|
{% get_admin_log 10 as admin_log %} |
||||
|
{% if not admin_log %} |
||||
|
<p>Não disponível.</p> |
||||
|
{% else %} |
||||
|
<ul class="actionlist"> |
||||
|
{% for entry in admin_log %} |
||||
|
<li class="{% if entry.is_addition %}addlink{% endif %} |
||||
|
{% if entry.is_change %}changelink{% endif %} |
||||
|
{% if entry.is_deletion %}deletelink{% endif %}"> |
||||
|
{% if not entry.is_deletion %}<a href="{{ entry.get_admin_url }}">{% endif %} |
||||
|
{{ entry.object_repr|escape|truncatewords_html:3 }} |
||||
|
{% if not entry.is_deletion %}</a>{% endif %} |
||||
|
<br /> |
||||
|
<span class="mini quiet"> |
||||
|
{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}, por |
||||
|
<i> |
||||
|
{% if entry.user.first_name %} |
||||
|
{{ entry.user.first_name }} |
||||
|
{% else %} |
||||
|
{{ entry.user.username }} |
||||
|
{% endif %} |
||||
|
</i> |
||||
|
</span> |
||||
|
</li> |
||||
|
{% endfor %} |
||||
|
</ul> |
||||
|
{% endif %} |
||||
|
</div> |
@ -0,0 +1,163 @@ |
|||||
|
{% load charts %} |
||||
|
|
||||
|
{% chart as convenios_assinados %} |
||||
|
{% chart-size 250 160 %} |
||||
|
{% chart-type "pie-3d" %} |
||||
|
{% chart-labels g_convassinado_proj.convenios %} |
||||
|
{% chart-data g_convassinado_proj.convenios %} |
||||
|
{% chart-legend g_convassinado_proj.projetos %} |
||||
|
{% chart-colors "A2CD5A,FFB90F,6CA6CD" %} |
||||
|
{% chart-title g_convassinado_proj.total_convenios %} |
||||
|
{% endchart %} |
||||
|
|
||||
|
{% chart as processos %} |
||||
|
{% chart-size 250 160 %} |
||||
|
{% chart-type "pie-3d" %} |
||||
|
{% chart-labels g_conv_proj.convenios %} |
||||
|
{% chart-data g_conv_proj.convenios %} |
||||
|
{% chart-legend g_conv_proj.projetos %} |
||||
|
{% chart-colors "A2CD5A,FFB90F,6CA6CD" %} |
||||
|
{% chart-title g_conv_proj.total_convenios %} |
||||
|
{% endchart %} |
||||
|
|
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Resumo de informações</h2> |
||||
|
<!-- h3>Câmaras municipais por projeto</h3 --> |
||||
|
<div class="align-center"> |
||||
|
<table> |
||||
|
<tr> |
||||
|
{% for item in tabela_resumo_camara.cabecalho_topo %} |
||||
|
<th>{{item}}</th> |
||||
|
{% endfor %} |
||||
|
</tr> |
||||
|
|
||||
|
{% for cabecalho,lista in tabela_resumo_camara.lista_zip %} |
||||
|
<tr> |
||||
|
<th>{{cabecalho}}</th> |
||||
|
{% for item in lista %} |
||||
|
<td>{{item}}</td> |
||||
|
{% endfor %} |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
|
||||
|
</table> |
||||
|
</div> |
||||
|
<ul> |
||||
|
<li>Câmaras sem processo: {{tabela_resumo_camara.camaras_sem_processo}}</li> |
||||
|
<li>Total de câmaras: {{tabela_resumo_camara.total_camaras}}</li> |
||||
|
</ul> |
||||
|
</div> |
||||
|
|
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Convênios</h2> |
||||
|
<h3>Convênios assinados por projeto</h3> |
||||
|
<div class="align-center"> |
||||
|
<img src="{{ convenios_assinados.url }}&chdlp=b" class="chart" /> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Serviços</h2> |
||||
|
<div class="titlemapbox"> |
||||
|
<div class="mapbox"><a href="/sigi/dashboard/mapa/"><img src="/sigi/media/images/mapicon.png"/><br/>Ver mapa</a></div> |
||||
|
<h3>Serviços hospedados no Interlegis (SEIT)</h3> |
||||
|
</div> |
||||
|
|
||||
|
<table> |
||||
|
<tr> |
||||
|
</tr> |
||||
|
|
||||
|
{% for servico in tabela_resumo_seit %} |
||||
|
<tr> |
||||
|
{% if forloop.first %} |
||||
|
<th style="width: 40%; vertical-align:bottom;">{{ servico.nome }}</th> |
||||
|
<th style="width: 20%; vertical-align:bottom; text-align: right;">{{ servico.total }}</th> |
||||
|
<th style="width: 20%; vertical-align:bottom; text-align: right;">{{ servico.novos_mes_anterior }}</th> |
||||
|
<th style="width: 20%; vertical-align:bottom; text-align: right;">{{ servico.novos_mes_atual }}</th> |
||||
|
{% else %} |
||||
|
<th style="width: 40%;">{{ servico.nome }}</th> |
||||
|
<td style="text-align: right;">{{ servico.total }}</td> |
||||
|
<td style="text-align: right;">{{ servico.novos_mes_anterior }}</td> |
||||
|
<td style="text-align: right;">{{ servico.novos_mes_atual }}</td> |
||||
|
{% endif %} |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</table> |
||||
|
</div> |
||||
|
|
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Resumo de informações</h2> |
||||
|
<h3>Resumo de informações por região</h3> |
||||
|
<div > |
||||
|
<p style="text-align: justify"> |
||||
|
Resumo de informações de Câmaras Municipais por região levando em conta |
||||
|
apenas o Projeto Interlegis. Demais projetos como PPM e PML não estão inclusos. |
||||
|
</p> |
||||
|
|
||||
|
<ul class="conteudo_regiao"> |
||||
|
<li><a href="reportsRegiao/CO">Centro Oeste</a></li> |
||||
|
<li><a href="reportsRegiao/NE">Nordeste</a></li> |
||||
|
<li><a href="reportsRegiao/NO">Norte</a></li> |
||||
|
<li><a href="reportsRegiao/SD">Sudeste</a></li> |
||||
|
<li><a href="reportsRegiao/SL">Sul</a></li> |
||||
|
</ul> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Convênios</h2> |
||||
|
<h3>Processos de convênios por projeto</h3> |
||||
|
<div class="align-center"> |
||||
|
<img src="{{ processos.url }}&chdlp=b" class="chart" /> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Atendimentos</h2> |
||||
|
<h3>Mapa de atuação do Interlegis</h3> |
||||
|
<div class="align-center"> |
||||
|
<a href="/sigi/dashboard/mapa/"> <img src="/sigi/media/images/mapicon-large.png" style="width: 60%;"/> </a> |
||||
|
</div> |
||||
|
{% comment %} |
||||
|
<h2>Metas BID</h2> |
||||
|
<h3>Estado das metas do contrato BID</h3> |
||||
|
<table style="margin: auto;"> |
||||
|
{% for meta in metas %} |
||||
|
<tr> |
||||
|
<td><strong>{{ meta.titulo }}</strong></td> |
||||
|
<td> |
||||
|
<img src="//chart.googleapis.com/chart?chf=c,s,CDCDCD&chbh=a&chs=250x18&cht=bhs&chco={{ meta.saude }}&chd=t:{{ meta.percentual_concluido|stringformat:'d' }}&chm=r,00000034,0,{{ meta.percentual_desejado_low|stringformat:'f' }},{{ meta.percentual_desejado_high|stringformat:'f' }},1" |
||||
|
width="100%" alt="" /> |
||||
|
</td> |
||||
|
<td style="text-align: center;"><font color="{{ meta.saude }}">{{ meta.percentual_concluido }}%</font></td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</table> |
||||
|
<div class="legend"> |
||||
|
<span><div style="background-color: #E74A69;"> </div>Ruim</span> |
||||
|
<span><div style="background-color: #FFDB6E;"> </div>Preocupante</span> |
||||
|
<span><div style="background-color: #89D7AF;"> </div>Bom</span> |
||||
|
<span><div style="background-color: #A2BBED;"> </div>Atingido</span> |
||||
|
</div> |
||||
|
{% endcomment %} |
||||
|
</div> |
||||
|
{% comment %} |
||||
|
<div class="module" style="height: 300px;"> |
||||
|
<h2>Diagnósticos</h2> |
||||
|
<h3>Resumo dos diagnósticos</h3> |
||||
|
|
||||
|
<table style="display: block; float: left;"> |
||||
|
{% for data in tabela_resumo_diagnostico %} |
||||
|
<tr> |
||||
|
<th>{{ data.title }}</th> |
||||
|
<td style="text-align: right;">{{ data.count }}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
<tr><td colspan="2"><a href="/sigi/diagnosticos/mapa/">Ver mapa ampliado</a></td></tr> |
||||
|
</table> |
||||
|
|
||||
|
<div id="map_canvas" style="float: left; height: 80%; width: 300px;"> |
||||
|
</div> |
||||
|
</div> |
||||
|
{% endcomment %} |
@ -0,0 +1,9 @@ |
|||||
|
{% load i18n tree_menu_tags %} |
||||
|
{% if user.is_superuser %} |
||||
|
<div class="module" id="user-module"> |
||||
|
<h3>{{ user.get_full_name }}</h3> |
||||
|
|
||||
|
<h3>Administração</h3> |
||||
|
{% show_menu "Administrador" "unordered-list" %} |
||||
|
</div> |
||||
|
{% endif %} |
Loading…
Reference in new issue