|
|
@ -5,6 +5,13 @@ |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css"> |
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> |
|
|
|
<style type="text/css"> |
|
|
|
.card-title { |
|
|
|
background-color: rgba(0,0,0,.03); |
|
|
|
padding-left: 24px; |
|
|
|
border-left: 5px solid #ee6e73; |
|
|
|
} |
|
|
|
</style> |
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> |
|
|
|
<title>{% trans "Órgãos Legislativos atendidos pelo Interlegis" %}</title> |
|
|
|
</head> |
|
|
@ -100,6 +107,7 @@ |
|
|
|
</div> |
|
|
|
<div class="card-body"> |
|
|
|
{% if srv.casa_legislativa.convenio_set.all %} |
|
|
|
<h6 class="card-title">{% trans "Convênios" %}</h6> |
|
|
|
<div class="table-responsive"> |
|
|
|
<table class="table table-sm"> |
|
|
|
<tr> |
|
|
@ -136,12 +144,43 @@ |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
{% if srv.casa_legislativa.oficinas %} |
|
|
|
<h6 class="card-title">{% trans "Oficinas realizadas" %}</h6> |
|
|
|
<div class="table-responsive"> |
|
|
|
<table class="table table-sm"> |
|
|
|
<tr> |
|
|
|
<th>{% trans "Período" %}</th> |
|
|
|
<th>{% trans "Nome" %}</th> |
|
|
|
<th>{% trans "Participantes" %}</th> |
|
|
|
</tr> |
|
|
|
{% for oficina in srv.casa_legislativa.oficinas %} |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
{% blocktranslate with inicio=oficina.data_inicio|date:"SHORT_DATE_FORMAT" termino=oficina.data_termino|date:"SHORT_DATE_FORMAT" %} |
|
|
|
{{ inicio }} a {{ termino}} |
|
|
|
{% endblocktranslate %} |
|
|
|
</td> |
|
|
|
<td>{{ oficina.nome }}</td> |
|
|
|
<td>{{ oficina.total_participantes|default:"-" }}</td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
<h6 class="card-title">{% trans "Serviços Interlegis" %}</h6> |
|
|
|
<div class="table-responsive"> |
|
|
|
<table class="table table-sm"> |
|
|
|
<tr style="vertical-align: bottom;"> |
|
|
|
<th rowspan="2">{% trans "Tipo de serviço" %}</th> |
|
|
|
<th rowspan="2">{% trans "Data de instalação" %}</th> |
|
|
|
<th rowspan="2">{% trans "URL de acesso" %}</th> |
|
|
|
<th colspan="2">{% trans "Última verificação" %}</th> |
|
|
|
<th rowspan="2">{% trans "Última utilização" %}</th> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th>{% trans "Tipo de serviço" %}</th> |
|
|
|
<th>{% trans "Data de instalação" %}</th> |
|
|
|
<th>{% trans "URL de acesso" %}</th> |
|
|
|
<th>{% trans "Data" %} |
|
|
|
<th>{% trans "Resultado" %}</th> |
|
|
|
</tr> |
|
|
|
{% endifchanged %} |
|
|
|
<tr> |
|
|
@ -154,6 +193,9 @@ |
|
|
|
<p>-</p> |
|
|
|
{% endif %} |
|
|
|
</td> |
|
|
|
<td>{{ srv.data_verificacao|default:"-" }}</td> |
|
|
|
<td>{{ srv.get_resultado_verificacao_display }}</td> |
|
|
|
<td>{{ srv.data_ultimo_uso|default:"-" }}</td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</table></div></div></div> |
|
|
|