Skip to content
Snippets Groups Projects
Commit d3bfbb95 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix attrs

parent ee8ff909
No related branches found
No related tags found
No related merge requests found
......@@ -510,4 +510,8 @@ class PersonGroupFormPerson(forms.Form):
layout = Layout("username")
username = forms.CharField(required=True, label=_("Person"))
username = forms.CharField(
required=True,
label=_("Person"),
widget=forms.TextInput(attrs={"autofocus": "", "autocomplete": "off"}),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment