forked from eos87/fed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{% extends "base.html" %} | ||
{% block extratitle %}Intercambio teórico y metodológico{% endblock %} | ||
{% block contenido %} | ||
|
||
{% include "bar3.html" %} | ||
<div class="result_tables"> | ||
<div class="titulo_indicadores"> | ||
{{resultado.nombre}}: Intercambio teórico y metod. | ||
</div> | ||
<div class="table_container"> | ||
<table class="mostrar"> | ||
<caption>Acciones efectuadas y efectivas</caption> | ||
<thead> | ||
<tr> | ||
<th> </th> | ||
<th>Acciones org. participó</th> | ||
<th>Participates por parte de la org.</th> | ||
<th>Acciones efectivas</th> | ||
<th>Efectividad</th> | ||
</tr> | ||
</thead> | ||
{%for key, value in tabla.items reversed %} | ||
<tr> | ||
<td>{{key}}</td> | ||
<td>{{value.acciones_org_part|floatformat}}</td> | ||
<td>{{value.participantes|floatformat}}</td> | ||
<td>{{value.acciones_efectivas|floatformat}}</td> | ||
<td>{{value.prom|floatformat}}</td> | ||
</tr> | ||
{%endfor%} | ||
</table> | ||
</div> | ||
</div> | ||
<div class="clean"></div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{% extends "base.html" %} | ||
{% block extratitle %}Medir y reportar los indicadores{% endblock %} | ||
{% block contenido %} | ||
|
||
{% include "bar3.html" %} | ||
<div class="result_tables"> | ||
<div class="titulo_indicadores"> | ||
{{resultado.nombre}}: Medir y reportar los indicadores | ||
</div> | ||
<div class="table_container"> | ||
<table class="mostrar"> | ||
<caption>Acciones efectuadas y efectivas</caption> | ||
<thead> | ||
<tr> | ||
<th> </th> | ||
<th>Acciones org. participó</th> | ||
<th>Participates por parte de la org.</th> | ||
<th>Acciones efectivas</th> | ||
<th>Efectividad</th> | ||
</tr> | ||
</thead> | ||
{%for key, value in tabla.items reversed %} | ||
<tr> | ||
<td>{{key}}</td> | ||
<td>{{value.acciones_org_part|floatformat}}</td> | ||
<td>{{value.participantes|floatformat}}</td> | ||
<td>{{value.acciones_efectivas|floatformat}}</td> | ||
<td>{{value.prom|floatformat}}</td> | ||
</tr> | ||
{%endfor%} | ||
</table> | ||
</div> | ||
</div> | ||
<div class="clean"></div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{% extends "base.html" %} | ||
{% block extratitle %}Mejorar la gestión{% endblock %} | ||
{% block contenido %} | ||
|
||
{% include "bar3.html" %} | ||
<div class="result_tables"> | ||
<div class="titulo_indicadores"> | ||
{{resultado.nombre}}: Mejorar la gestión | ||
</div> | ||
<div class="table_container"> | ||
<table class="mostrar"> | ||
<caption>Organizaciones con sistema administrativo</caption> | ||
<thead> | ||
<tr> | ||
<th> </th> | ||
<th>Para mejorar sistema contable</th> | ||
<th>Para mejorar plan estratégico</th> | ||
<th>Para obtener personería</th> | ||
</tr> | ||
</thead> | ||
{%for key, value in tabla.items %} | ||
<tr> | ||
<td>{{key}}</td> | ||
<td>{{value.mejorar_sistema|floatformat}}</td> | ||
<td>{{value.mejorar_plan|floatformat}}</td> | ||
<td>{{value.mejorar_apoyo|floatformat}}</td> | ||
<td>{{value.prom|floatformat}}</td> | ||
</tr> | ||
{%endfor%} | ||
</table> | ||
</div> | ||
</div> | ||
<div class="clean"></div> | ||
{% endblock %} |