Clarify domain wording a little

Fixes #469
pull/474/head
Andrew Godwin 2023-01-23 16:17:18 -07:00 zatwierdzone przez GitHub
rodzic ccded99a63
commit f967f6c697
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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,
)