Browse Source
fix: ajusta ordenacao de votos nominais por ordem alfabetica no extrato da sessao (#3690)
Co-authored-by: joao <joao@mezzoplanejamento.com.br>
pull/3692/head
joaohortsenado
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
2 deletions
-
sapl/base/templatetags/common_tags.py
-
sapl/templates/sessao/blocos_ata/materias_ordem_dia.html
|
@ -409,3 +409,8 @@ def parse_datetime(value): |
|
|
@register.filter |
|
|
@register.filter |
|
|
def is_report_visible(request, url_path=None): |
|
|
def is_report_visible(request, url_path=None): |
|
|
return is_report_allowed(request, url_path) |
|
|
return is_report_allowed(request, url_path) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@register.filter |
|
|
|
|
|
def sort_by_index(queryset, index): |
|
|
|
|
|
return sorted(queryset, key=lambda x: x[index]) |
|
@ -1,3 +1,4 @@ |
|
|
|
|
|
{% load common_tags %} |
|
|
{% if materias_ordem %} |
|
|
{% if materias_ordem %} |
|
|
<fieldset> |
|
|
<fieldset> |
|
|
<p align="justify" style="margin-top: 0"> |
|
|
<p align="justify" style="margin-top: 0"> |
|
@ -28,7 +29,7 @@ |
|
|
{% if m.resultado_observacao %} - Obs.: {{ m.resultado_observacao }} {% endif %} |
|
|
{% if m.resultado_observacao %} - Obs.: {{ m.resultado_observacao }} {% endif %} |
|
|
{% if m.voto_nominal %} |
|
|
{% if m.voto_nominal %} |
|
|
<b>Votos Nominais :</b> |
|
|
<b>Votos Nominais :</b> |
|
|
{% for voto in m.voto_nominal %} |
|
|
{% for voto in m.voto_nominal|sort_by_index:0 %} |
|
|
{{ voto.0 }} - {{ voto.1 }} |
|
|
{{ voto.0 }} - {{ voto.1 }} |
|
|
{% if not forloop.last %} ; {% endif %} |
|
|
{% if not forloop.last %} ; {% endif %} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|