@ -28,69 +28,69 @@
{% if not filter_url %}
{% crispy filter.form %}
{% endif %}
{% endif %}
{% endif %}
< p > < / p >
{% if filter_url and not filter.form.errors %}
< table class = "table table-striped table-bordered" >
< thead class = "thead-default" >
< tr >
< td > < h3 > {% trans "Matérias" %}< / h3 > < / td >
< td > < h3 > {% trans "Tipo de Votação" %}< / h3 > < / td >
< / tr >
< / thead >
{% if paginator.count %}
{% if paginator.count > 1 %}
< h3 > {% blocktrans with paginator.count as total_materias %}Pesquisa concluída com sucesso! Foram encontradas {{total_materias}} matérias.{% endblocktrans %}< / h3 >
{% elif paginator.count == 1 %}
< h3 > {% trans 'Pesquisa concluída com sucesso! Foi encontrada 1 matéria.'%}< / h3 >
{% endif %}
< form method = "POST" enctype = "application/x-www-form-urlencoded" >
< form method = "POST" enctype = "application/x-www-form-urlencoded" >
{% csrf_token %}
{% for m in page_obj %}
< tr >
< td >
< input type = "checkbox" name = "materia_id" id = "{{m.id}}" value = "{{m.id}}" { % if check % } checked { % endif % } >
< strong > < a href = "{% url 'sapl.materia:materialegislativa_detail' m.id %}" > {{m.tipo.sigla}} {{m.numero}}/{{m.ano}} - {{m.tipo}}< / strong > < / a > < / br >
< strong > Autores:< / strong >
{% for a in m.autoria_set.all %}
{% if not forloop.first %}
, {{a.autor|default_if_none:""}}
{% else %}
{{a.autor|default_if_none:""}}
{% endif %}
{% endfor %}
< / br >
< strong > Localização Atual:< / strong > {{m.tramitacao_set.last.unidade_tramitacao_destino|default_if_none:"Não informado"}}< / br >
< strong > Status:< / strong > {{m.tramitacao_set.last.status|default_if_none:"Não informado"}}< / br >
< strong > Data da última Tramitação:< / strong > {{m.tramitacao_set.last.data_tramitacao|default_if_none:"Não informado"}}< / br >
< strong > Ementa:< / strong > {{ m.ementa|safe }}< / br >
< p > < / p >
< td class = "col-md-3" >
< input type = "radio" name = "tipo_votacao_{{m.id}}" id = "tipo_votacao_{{m.id}}" value = "1" > < label for = "tipo" > Simbólica< / label >
< / br >
< input type = "radio" name = "tipo_votacao_{{m.id}}" id = "tipo_votacao_{{m.id}}" value = "2" > < label for = "tipo" > Nominal< / label >
< / br >
< input type = "radio" name = "tipo_votacao_{{m.id}}" id = "tipo_votacao_{{m.id}}" value = "3" > < label for = "tipo" > Secreta< / label >
< / td >
< / td >
< / tr >
{% endfor %}
{% else %}
< table class = "table table-striped table-bordered" >
< thead class = "thead-default" >
< tr >
< td > < h3 > {% trans "Matérias" %}< / h3 > < / td >
< td > < h3 > {% trans "Tipo de Votação" %}< / h3 > < / td >
< / tr >
< / thead >
{% if paginator.count > 1 %}
< h3 > {% blocktrans with paginator.count as total_materias %}Pesquisa concluída com sucesso! Foram encontradas {{total_materias}} matérias.{% endblocktrans %}< / h3 >
{% elif paginator.count == 1 %}
< h3 > {% trans 'Pesquisa concluída com sucesso! Foi encontrada 1 matéria.'%}< / h3 >
{% endif %}
{% for m in page_obj %}
< tr >
< td >
< input type = "checkbox" name = "materia_id" id = "{{m.id}}" value = "{{m.id}}" { % if check % } checked { % endif % } >
< strong > < a href = "{% url 'sapl.materia:materialegislativa_detail' m.id %}" > {{m.tipo.sigla}} {{m.numero}}/{{m.ano}} - {{m.tipo}}< / strong > < / a > < / br >
< strong > Autores:< / strong >
{% for a in m.autoria_set.all %}
{% if not forloop.first %}
, {{a.autor|default_if_none:""}}
{% else %}
{{a.autor|default_if_none:""}}
{% endif %}
{% endfor %}
< / br >
< strong > Localização Atual:< / strong > {{m.tramitacao_set.last.unidade_tramitacao_destino|default_if_none:"Não informado"}}< / br >
< strong > Status:< / strong > {{m.tramitacao_set.last.status|default_if_none:"Não informado"}}< / br >
< strong > Data da última Tramitação:< / strong > {{m.tramitacao_set.last.data_tramitacao|default_if_none:"Não informado"}}< / br >
< strong > Ementa:< / strong > {{ m.ementa|safe }}< / br >
< p > < / p >
< td class = "col-md-3" >
< input type = "radio" name = "tipo_votacao_{{m.id}}" id = "tipo_votacao_{{m.id}}" value = "1" > < label for = "tipo" > Simbólica< / label >
< / br >
< input type = "radio" name = "tipo_votacao_{{m.id}}" id = "tipo_votacao_{{m.id}}" value = "2" > < label for = "tipo" > Nominal< / label >
< / br >
< input type = "radio" name = "tipo_votacao_{{m.id}}" id = "tipo_votacao_{{m.id}}" value = "3" > < label for = "tipo" > Secreta< / label >
< / td >
< / td >
< / tr >
{% endfor %}
< / table >
< input type = "submit" value = "Adicionar matérias selecionadas" class = "btn btn-primary" S >
< / form >
{% else %}
< table class = "table table-striped table-bordered" >
< tr >
< td >
< h3 > Nenhuma matéria encontrada com essas especificações< / h3 >
< / tr >
< / td >
< / tr >
< / table >
{% endif %}
< / table >
< input type = "submit" value = "Adicionar matérias selecionadas" class = "btn btn-primary" S >
< / form >
{% endif %}
{% endblock detail_content %}