Fix default team_creation representation value in the config page (#1803)

* Fix default team_creation representation value in the config page
This commit is contained in:
Kevin Chung
2021-02-16 13:21:32 -05:00
committed by GitHub
parent 5c9b3e7070
commit a09e2201ee

View File

@@ -2,7 +2,7 @@
{% set verify_emails = "true" if verify_emails == True else "false" %}
{% set name_changes = "true" if name_changes == True else "false" %}
{% set team_creation = "true" if team_creation == True else "false" %}
{% set team_creation = "false" if team_creation == False else "true" %}
{% with form = Forms.config.AccountSettingsForm(verify_emails=verify_emails, name_changes=name_changes, team_disbanding=team_disbanding, team_creation=team_creation) %}
<form method="POST" autocomplete="off" class="w-100">