Skip to content

Commit

Permalink
GH #755 - Making room for more data.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuch committed Sep 9, 2023
1 parent c482127 commit 7a71ab6
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 7a71ab6

Please sign in to comment.