Skip to content

Commit

Permalink
Merge branch 'main' into support/3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Sep 9, 2023
2 parents 9abf09e + 7a71ab6 commit eb03f81
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class CreateForm(WithRateLimiting):
id = forms.CharField(widget=forms.HiddenInput())
name = forms.CharField(widget=forms.TextInput(attrs={'class':'required', 'style':'width:90%'}))
is_active = forms.BooleanField(required=False, widget=forms.CheckboxInput(attrs={'checked':'checked'}))
username = forms.CharField(widget=forms.TextInput(attrs={'class':'required'}))
realm = forms.CharField(widget=forms.TextInput(attrs={'class':'required'}))
username = forms.CharField(widget=forms.TextInput(attrs={'class':'required', 'style':'width:90%'}))
realm = forms.CharField(widget=forms.TextInput(attrs={'class':'required', 'style':'width:90%'}))
is_rate_limit_active = forms.BooleanField(required=False, widget=forms.CheckboxInput())
rate_limit_check_parent_def = forms.BooleanField(required=False, widget=forms.CheckboxInput(attrs={'checked':'checked'}))

Expand Down

0 comments on commit eb03f81

Please sign in to comment.