|
@ -666,7 +666,9 @@ class MesaDiretoraView(FormView): |
|
|
legislatura=legislatura).order_by("data_inicio") |
|
|
legislatura=legislatura).order_by("data_inicio") |
|
|
|
|
|
|
|
|
year = timezone.now().year |
|
|
year = timezone.now().year |
|
|
sessao_atual = sessoes.filter(data_inicio__year=year).first() |
|
|
month = timezone.now().month |
|
|
|
|
|
|
|
|
|
|
|
sessao_atual = sessoes.filter(data_inicio__year__lte=year).exclude(data_inicio__gt=timezone.now()).order_by('-data_inicio').first() |
|
|
|
|
|
|
|
|
mesa = sessao_atual.composicaomesa_set.all() if sessao_atual else [] |
|
|
mesa = sessao_atual.composicaomesa_set.all() if sessao_atual else [] |
|
|
|
|
|
|
|
|