diff --git a/sapl/materia/forms.py b/sapl/materia/forms.py index 38df0eec4..19f3dac0c 100644 --- a/sapl/materia/forms.py +++ b/sapl/materia/forms.py @@ -74,8 +74,8 @@ class AdicionarVariasAutoriasFilterSet(django_filters.FilterSet): self.form.helper = FormHelper() self.form.helper.form_method = 'GET' self.form.helper.layout = Layout( - Fieldset(_('Pesquisar Autores'), - row1, form_actions(save_label='Pesquisar')) + Fieldset(_('Filtrar Autores'), + row1, form_actions(save_label='Filtrar')) ) diff --git a/sapl/templates/materia/adicionar_varias_autorias.html b/sapl/templates/materia/adicionar_varias_autorias.html index 34bed6d42..90b4302f5 100644 --- a/sapl/templates/materia/adicionar_varias_autorias.html +++ b/sapl/templates/materia/adicionar_varias_autorias.html @@ -16,39 +16,28 @@ {% endif %} {% endblock buttons %} - {% if not filter_url %} - {% crispy filter.form %} - {% endif %} + {% crispy filter.form %} - {% if filter_url %} - - - - - {% if filter.qs|length > 1 %} -

{% blocktrans with filter.qs|length as total_autores %}Pesquisa concluĂ­da com sucesso! Foram encontrados {{total_autores}} autores.{% endblocktrans %}

- {% elif filter.qs|length == 1 %} -

{% trans 'Pesquisa concluĂ­da com sucesso! Foi encontrado 1 autor.'%}

- {% else %} - - {% endif %} +

{% trans "Autor" %}

Nenhum autor encontrado.

+ + + +
+ + {% csrf_token %} + {% for m in filter.qs %} + + + + {% endfor %} - - {% csrf_token %} - {% for m in filter.qs %} - - - - {% endfor %} - -

{% trans "Autor" %}

+ +    + {{m}}
+
- -    - {{m}}
-
-
- -
- - {% endif %} + +
+ +
+ {% endblock detail_content %}