-
-
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.
Add a display for the intermediate results (#379)
- change the label to not show the "final results" text
- Loading branch information
1 parent
c96e809
commit 696dc83
Showing
4 changed files
with
56 additions
and
5 deletions.
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,40 @@ | ||
# Generated by Django 4.2.16 on 2024-12-03 14:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("hub", "0078_candidatevote_organization"), | ||
] | ||
|
||
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_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