-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the display of candidates if results are not ready
- Loading branch information
1 parent
93ec9c3
commit af99875
Showing
4 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Generated by Django 4.2.16 on 2024-12-03 22:02 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("hub", "0079_alter_featureflag_flag"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="featureflag", | ||
name="flag", | ||
field=models.CharField( | ||
choices=[ | ||
("enable_org_registration", "Enable organization registration"), | ||
("enable_org_editing", "Enable organization editing"), | ||
("enable_org_approval", "Enable organization approvals"), | ||
("enable_candidate_registration", "Enable candidate registration"), | ||
("enable_candidate_editing", "Enable candidate editing"), | ||
("enable_candidate_supporting", "Enable candidate supporting"), | ||
("enable_candidate_voting", "Enable candidate voting"), | ||
("enable_candidate_confirmation", "Enable candidate confirmation"), | ||
("enable_pending_results", "Enable the phase when waiting for the display of results"), | ||
("enable_results_display", "Enable the display of results"), | ||
("enable_final_results_display", "Enable the display of results after resolving all complaints"), | ||
("single_domain_round", "Voting round with just one domain (some restrictions will apply)"), | ||
( | ||
"global_support_round", | ||
"Enable global support (the support of at least 10 organizations is required)", | ||
), | ||
("enable_voting_domain", "Enable the voting domain restriction for an organization"), | ||
], | ||
max_length=254, | ||
unique=True, | ||
verbose_name="Flag", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters