8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-02 23:53:22 +00:00

Autocomplete on history search

This commit is contained in:
chirac 2020-12-30 18:54:50 +01:00 committed by Gabriel Detraz
parent 1f83a8eff2
commit b418719ef7
2 changed files with 4 additions and 2 deletions

View file

@ -25,6 +25,7 @@ from django import forms
from django.forms import Form
from django.utils.translation import ugettext_lazy as _
from re2o.base import get_input_formats_help_text
from re2o.mixins import AutocompleteModelMixin
import inspect
@ -118,6 +119,7 @@ class ActionsSearchForm(Form):
label=_("Performed by"),
queryset=users.models.User.objects.all(),
required=False,
widget=AutocompleteModelMixin(url="/users/user-autocomplete"),
)
action_type = forms.MultipleChoiceField(
label=_("Action type"),

View file

@ -22,7 +22,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endcomment %}
{% load bootstrap3 %}
{% load massive_bootstrap_form %}
{% load i18n %}
{% block title %}{% trans "Search events" %}{% endblock %}
@ -32,10 +31,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<form class="form">
<h3>{% trans "Search events" %}</h3>
{% massive_bootstrap_form actions_form 'u' %}
{% bootstrap_form actions_form %}
{% trans "Search" as tr_search %}
{% bootstrap_button tr_search button_type="submit" icon="search" %}
</form>
{{ actions_form.media }}
<br />
<br />
<br />