mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 22:14:25 +01:00
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:
@@ -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">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user