mirror of https://github.com/interlegis/sigi.git
Sesostris Vieira
9 years ago
7 changed files with 240 additions and 80 deletions
@ -0,0 +1,63 @@ |
|||
{% extends "base_report.html" %} |
|||
{% load static from staticfiles %} |
|||
{% load i18n %} |
|||
|
|||
{% block extra_head %} |
|||
<style> |
|||
@page { |
|||
size: A4 landscape; |
|||
margin: 1cm; |
|||
} |
|||
|
|||
* { font-size: 10px;} |
|||
|
|||
a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
dt { |
|||
font-weight: 700; |
|||
} |
|||
|
|||
dd { |
|||
margin-left: 2mm; |
|||
} |
|||
|
|||
table, th, td { |
|||
border: 1px solid #ddd; |
|||
} |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
} |
|||
|
|||
th { |
|||
text-align: center; |
|||
vertical-align: bottom; |
|||
background-color: #f1f1f1; |
|||
} |
|||
|
|||
td { |
|||
width: 6%; |
|||
} |
|||
|
|||
|
|||
td, th { |
|||
padding: 2px; |
|||
vertical-align: center; |
|||
} |
|||
|
|||
td:first-child { width: 22%; font-weight: bolder; } |
|||
td:last-child { font-weight: bolder; } |
|||
|
|||
</style> |
|||
<title>{% blocktrans %}Alocação de equipe em {{ ano_pesquisa }}{% endblocktrans %}</title> |
|||
{% endblock %} |
|||
|
|||
{% block report %} |
|||
<h1>{% blocktrans %}Alocação de equipe em {{ ano_pesquisa }}{% endblocktrans %}</h1> |
|||
{% include "eventos/alocacao_equipe_snippet.html" %} |
|||
{% endblock %} |
|||
</body> |
|||
</html> |
@ -0,0 +1,17 @@ |
|||
<div class="table-responsive"> |
|||
<table class="table table-condensed table-bordered" repeat="1"> |
|||
{% for linha in linhas %} |
|||
<tr> |
|||
{% if forloop.first %} |
|||
{% for coluna in linha %} |
|||
<th>{{ coluna }}</th> |
|||
{% endfor %} |
|||
{% else %} |
|||
{% for coluna in linha %} |
|||
<td>{{ coluna }}</td> |
|||
{% endfor %} |
|||
{% endif %} |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
</div> |
@ -0,0 +1,59 @@ |
|||
{% extends "base_report.html" %} |
|||
{% load static from staticfiles %} |
|||
{% load i18n %} |
|||
|
|||
{% block extra_head %} |
|||
<style> |
|||
@page { |
|||
size: A4 landscape; |
|||
margin: 1cm; |
|||
} |
|||
|
|||
* { font-size: 10px;} |
|||
|
|||
a { |
|||
color: black; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
dt { |
|||
font-weight: 700; |
|||
} |
|||
|
|||
dd { |
|||
margin-left: 2mm; |
|||
} |
|||
|
|||
table, th, td { |
|||
border: 1px solid #ddd; |
|||
} |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
} |
|||
|
|||
td, th { |
|||
padding: 2px; |
|||
vertical-align: top; |
|||
} |
|||
|
|||
th { |
|||
text-align: center !important; |
|||
vertical-align: bottom !important; |
|||
} |
|||
|
|||
.status-P { background-color: #ffffb0} |
|||
.status-A { background-color: #a6ebff} |
|||
.status-O { background-color: #c2ffc2} |
|||
.status-R { background-color: #ffdaa6} |
|||
.status-C { background-color: #d98f8d} |
|||
</style> |
|||
<title>{% blocktrans %}Eventos de {{ mes_pesquisa }}/{{ ano_pesquisa }}{% endblocktrans %}</title> |
|||
{% endblock %} |
|||
|
|||
{% block report %} |
|||
<h1>{% blocktrans %}Eventos de {{ mes_pesquisa }}/{{ ano_pesquisa }}{% endblocktrans %}</h1> |
|||
{% include "eventos/calendario_snippet.html" %} |
|||
{% endblock %} |
|||
</body> |
|||
</html> |
@ -0,0 +1,68 @@ |
|||
{% load i18n admin_static %} |
|||
{% load static from staticfiles %} |
|||
|
|||
<div class="table-responsive"> |
|||
<table class="table table-condensed table-bordered" repeat="2"> |
|||
<thead> |
|||
<tr> |
|||
{% for d in dates %} |
|||
<th>{{ d|date:'D' }}</th> |
|||
{% endfor %} |
|||
</tr> |
|||
<tr> |
|||
{% for d in dates %} |
|||
<th>{% ifchanged d|date:'b' %}{{ d|date:'b' }}<br/>{% endifchanged %}{{ d|date:'j' }}</th> |
|||
{% endfor %} |
|||
</tr> |
|||
</thead> |
|||
{% for linha in linhas %} |
|||
<tr> |
|||
{% for evento in linha %} |
|||
{% if evento.start > 0 %} |
|||
<td colspan="{{ evento.start }}"> </td> |
|||
{% endif %} |
|||
|
|||
<td colspan="{{ evento.duration }}" class="status-{{ evento.evento.status }}"> |
|||
<h5><a href="{% url 'admin:eventos_evento_change' evento.evento.pk %}">{{ evento.evento.nome }}</a></h5> |
|||
<h6>({{ evento.evento.tipo_evento }})</h6> |
|||
<dl class="dl-horizontal"> |
|||
{% if evento.evento.solicitante %} |
|||
<dt>{% trans "Solicitante" %}:</dt> |
|||
<dd>{{ evento.evento.solicitante }}</dd> |
|||
{% endif %} |
|||
|
|||
{% if evento.evento.casa_anfitria %} |
|||
<dt>{% trans "Casa anfitriã" %}:</dt> |
|||
<dd>{{ evento.evento.casa_anfitria }}<dd> |
|||
{% endif %} |
|||
|
|||
<dt>{% trans "Município" %}:</dt> |
|||
<dd>{{ evento.evento.municipio }}<dd> |
|||
<dt>{% trans "Status" %}:</dt> |
|||
<dd>{{ evento.evento.get_status_display }}<dd> |
|||
|
|||
{% if evento.evento.data_cancelamento %} |
|||
<dt>{% trans "Data de cancelamento" %}:</dt> |
|||
<dd>{{ evento.evento.data_cancelamento }}<dd> |
|||
{% endif %} |
|||
|
|||
{% if evento.evento.equipe_set.count > 0 %} |
|||
<dt>{% trans "Equipe" %}:</dt> |
|||
<dd><ul class="list-unstyled"> |
|||
{% for m in evento.evento.equipe_set.all %} |
|||
<li>{{ m.membro }} ({{ m.funcao }})</li> |
|||
{% endfor %} |
|||
<ul><dd> |
|||
{% endif %} |
|||
</dl> |
|||
</td> |
|||
|
|||
{% if evento.close > 0 %} |
|||
<td colspan="{{ evento.close }}"> </td> |
|||
{% endif %} |
|||
|
|||
{% endfor %} |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
</div> |
Loading…
Reference in new issue