-
-
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.
ACT-453: Simplify target frequency labels (#490)
* rename existing labels * add new reporting frequencies * add migrations Co-authored-by: Andrew <[email protected]>
- Loading branch information
1 parent
c0590c8
commit b1f9c5b
Showing
9 changed files
with
271 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 2.2.10 on 2020-04-24 13:49 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('indicators', '0011_merge_20200312_2019'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='historicalindicator', | ||
name='target_frequency', | ||
field=models.IntegerField(blank=True, choices=[(1, 'Life of Program only'), (3, 'Every Year'), (4, 'Every Six Months'), (5, 'Every Four Months'), (6, 'Every Three Months'), (7, 'Every Month'), (8, 'Every Week'), (9, 'Every Two Weeks')], help_text=' ', null=True, verbose_name='Target frequency'), | ||
), | ||
migrations.AlterField( | ||
model_name='indicator', | ||
name='target_frequency', | ||
field=models.IntegerField(blank=True, choices=[(1, 'Life of Program only'), (3, 'Every Year'), (4, 'Every Six Months'), (5, 'Every Four Months'), (6, 'Every Three Months'), (7, 'Every Month'), (8, 'Every Week'), (9, 'Every Two Weeks')], help_text=' ', null=True, verbose_name='Target frequency'), | ||
), | ||
] |
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
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
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
Oops, something went wrong.