Clarify domain wording a little

Fixes #469
This commit is contained in:
Andrew Godwin 2023-01-23 16:17:18 -07:00 committed by GitHub
parent ccded99a63
commit f967f6c697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -59,12 +59,12 @@ class DomainCreate(FormView):
validators=[DomainValidator()],
)
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")]),
required=False,
)
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")]),
required=False,
)