mirror of
https://github.com/jointakahe/takahe.git
synced 2025-02-23 10:46:15 +00:00
Switch ordering for domain default field
This commit is contained in:
parent
2772ee7188
commit
c5e00a2c73
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class DomainCreate(FormView):
|
||||||
)
|
)
|
||||||
default = forms.BooleanField(
|
default = forms.BooleanField(
|
||||||
help_text="If this is the default option for new identities",
|
help_text="If this is the default option for new identities",
|
||||||
widget=forms.Select(choices=[(True, "Yes"), (False, "No")]),
|
widget=forms.Select(choices=[(False, "No"), (True, "Yes")]),
|
||||||
required=False,
|
required=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue