Browse Source

Refatorados atributos style na home

producao
Marcio Mazza 10 years ago
parent
commit
a462bd9334
  1. 22
      templates/index.html
  2. 28
      templates/snippets/modules/charts-convenios.html

22
templates/index.html

@ -166,6 +166,28 @@
{# });#} {# });#}
{# </script>#} {# </script>#}
{# end highcharts scripts #} {# end highcharts scripts #}
<style type="text/css">
.numeros td,
.numeros th {
text-align: right;
}
.numeros tr :first-child {
text-align: left;
}
.servicos tr :first-child {
width: 40%;
}
#dashboard-mapa a img {
width: 80%;
}
.panel-footer dl {
margin-bottom: 5px;
}
</style>
{% endblock %} {% endblock %}
{% block content_title %}<h1>Dashboard</h1>{% endblock %} {% block content_title %}<h1>Dashboard</h1>{% endblock %}

28
templates/snippets/modules/charts-convenios.html

@ -5,7 +5,7 @@
<div class="col-md-4"> <div class="col-md-4">
<div class="panel panel-primary flex-col"> <div class="panel panel-primary flex-col">
<div class="panel-heading">Resumo de informações</div> <div class="panel-heading">Resumo de informações</div>
<table class="table table-condensed"> <table class="table table-condensed numeros">
<tr> <tr>
{% for item in tabela_resumo_camara.cabecalho_topo %} {% for item in tabela_resumo_camara.cabecalho_topo %}
<th>{{item}}</th> <th>{{item}}</th>
@ -58,19 +58,19 @@
</div> </div>
<table class="table table-condensed"> <table class="table table-condensed numeros servicos">
{% for servico in tabela_resumo_seit %} {% for servico in tabela_resumo_seit %}
<tr> <tr>
{% if forloop.first %} {% if forloop.first %}
<th style="width: 40%; vertical-align:bottom;">{{ servico.nome }}</th> <th>{{ servico.nome }}</th>
<th style="width: 20%; vertical-align:bottom; text-align: right;">{{ servico.total }}</th> <th>{{ servico.total }}</th>
<th style="width: 20%; vertical-align:bottom; text-align: right;">{{ servico.novos_mes_anterior }}</th> <th>{{ servico.novos_mes_anterior }}</th>
<th style="width: 20%; vertical-align:bottom; text-align: right;">{{ servico.novos_mes_atual }}</th> <th>{{ servico.novos_mes_atual }}</th>
{% else %} {% else %}
<th style="width: 40%;">{{ servico.nome }}</th> <th>{{ servico.nome }}</th>
<td style="text-align: right;">{{ servico.total }}</td> <td>{{ servico.total }}</td>
<td style="text-align: right;">{{ servico.novos_mes_anterior }}</td> <td>{{ servico.novos_mes_anterior }}</td>
<td style="text-align: right;">{{ servico.novos_mes_atual }}</td> <td>{{ servico.novos_mes_atual }}</td>
{% endif %} {% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
@ -85,7 +85,7 @@
<div class="panel-heading">Resumo de informações</div> <div class="panel-heading">Resumo de informações</div>
<div class="panel-body"> <div class="panel-body">
<h3>Resumo de informações por região</h3> <h3>Resumo de informações por região</h3>
<p style="text-align: justify"> <p>
Resumo de informações de Câmaras Municipais por região levando em conta 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. apenas o Projeto Interlegis. Demais projetos como PPM e PML não estão inclusos.
</p> </p>
@ -105,7 +105,7 @@
<div class="panel-heading">Convênios</div> <div class="panel-heading">Convênios</div>
<div class="panel-body"> <div class="panel-body">
<h3>Processos de convênios por projeto</h3> <h3>Processos de convênios por projeto</h3>
<div id="canvas-holder-2" style="margin-top: 55px"> <div id="canvas-holder-2">
<canvas id="chart-area-2" width="150" height="150" /> <canvas id="chart-area-2" width="150" height="150" />
</div> </div>
</div> </div>
@ -116,8 +116,8 @@
<div class="panel-heading">Atendimentos</div> <div class="panel-heading">Atendimentos</div>
<div class="panel-body"> <div class="panel-body">
<h3>Mapa de atuação do Interlegis</h3> <h3>Mapa de atuação do Interlegis</h3>
<div class="align-center"> <div id="dashboard-mapa" class="align-center">
<a href="/dashboard/mapa/"> <img src="{% static 'img/mapicon-large.png' %}" style="width: 60%;"/> </a> <a href="/dashboard/mapa/"> <img src="{% static 'img/mapicon-large.png' %}"/> </a>
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save