mirror of
https://github.com/jointakahe/takahe.git
synced 2025-06-06 02:38:49 +00:00
parent
ccded99a63
commit
f967f6c697
1 changed files with 2 additions and 2 deletions
|
@ -59,12 +59,12 @@ class DomainCreate(FormView):
|
||||||
validators=[DomainValidator()],
|
validators=[DomainValidator()],
|
||||||
)
|
)
|
||||||
public = forms.BooleanField(
|
public = forms.BooleanField(
|
||||||
help_text="If any user on this server can create identities here",
|
help_text="If any user on this server can create identities under this domain",
|
||||||
widget=forms.Select(choices=[(True, "Public"), (False, "Private")]),
|
widget=forms.Select(choices=[(True, "Public"), (False, "Private")]),
|
||||||
required=False,
|
required=False,
|
||||||
)
|
)
|
||||||
default = forms.BooleanField(
|
default = forms.BooleanField(
|
||||||
help_text="If this is the default option for new identities",
|
help_text="If this domain is the default option for new identities",
|
||||||
widget=forms.Select(choices=[(False, "No"), (True, "Yes")]),
|
widget=forms.Select(choices=[(False, "No"), (True, "Yes")]),
|
||||||
required=False,
|
required=False,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue