From d512d37b17693f6bca419474500eaa5dfcc49008 Mon Sep 17 00:00:00 2001 From: Paul Craig Date: Tue, 19 Nov 2024 09:54:03 -0500 Subject: [PATCH] Add 1 new Bloom Coach and 2 new HRSA Designers --- CHANGELOG.md | 2 + ...77_alter_nofo_coach_alter_nofo_designer.py | 60 +++++++++++++++++++ bloom_nofos/nofos/models.py | 3 + 3 files changed, 65 insertions(+) create mode 100644 bloom_nofos/nofos/migrations/0077_alter_nofo_coach_alter_nofo_designer.py diff --git a/CHANGELOG.md b/CHANGELOG.md index a8b80a72..12f6ba16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve ### Added +- 2 new HRSA designers, and 1 new Bloom Coach + ### Changed ### Fixed diff --git a/bloom_nofos/nofos/migrations/0077_alter_nofo_coach_alter_nofo_designer.py b/bloom_nofos/nofos/migrations/0077_alter_nofo_coach_alter_nofo_designer.py new file mode 100644 index 00000000..3e15e1cc --- /dev/null +++ b/bloom_nofos/nofos/migrations/0077_alter_nofo_coach_alter_nofo_designer.py @@ -0,0 +1,60 @@ +# Generated by Django 5.0.8 on 2024-11-19 14:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("nofos", "0076_alter_nofo_number_alter_nofo_short_name_and_more"), + ] + + operations = [ + migrations.AlterField( + model_name="nofo", + name="coach", + field=models.CharField( + blank=True, + choices=[ + ("aarti", "Aarti"), + ("alex", "Alex"), + ("emily", "Emily"), + ("hannah", "Hannah"), + ("idit", "Idit"), + ("julie", "Julie"), + ("july", "July"), + ("mick", "Mick"), + ("moira", "Moira"), + ("morgan", "Morgan"), + ("shane", "Shane"), + ], + help_text="The coach has the primary responsibility for editing this NOFO.", + max_length=16, + ), + ), + migrations.AlterField( + model_name="nofo", + name="designer", + field=models.CharField( + blank=True, + choices=[ + ("bloom-abbey", "Abbey"), + ("bloom-adam", "Adam"), + ("bloom-emily-b", "Emily\xa0B"), + ("bloom-emily-i", "Emily\xa0I"), + ("bloom-jackie", "Jackie"), + ("bloom-kevin", "Kevin"), + ("bloom-yasmine", "Yasmine"), + ("hrsa-betty", "Betty"), + ("hrsa-doretha", "Doretha"), + ("hrsa-gwen", "Gwen"), + ("hrsa-ericka", "Ericka"), + ("hrsa-jene", "Jene"), + ("hrsa-randy", "Randy"), + ("hrsa-stephanie", "Stephanie"), + ], + help_text="The designer is responsible for the layout of this NOFO.", + max_length=16, + ), + ), + ] diff --git a/bloom_nofos/nofos/models.py b/bloom_nofos/nofos/models.py index 64316d7e..5e8f363c 100644 --- a/bloom_nofos/nofos/models.py +++ b/bloom_nofos/nofos/models.py @@ -17,6 +17,7 @@ ("idit", "Idit"), ("julie", "Julie"), ("july", "July"), + ("mick", "Mick"), ("moira", "Moira"), ("morgan", "Morgan"), ("shane", "Shane"), @@ -33,6 +34,8 @@ ("hrsa-betty", "Betty"), ("hrsa-doretha", "Doretha"), ("hrsa-gwen", "Gwen"), + ("hrsa-ericka", "Ericka"), + ("hrsa-jene", "Jene"), ("hrsa-randy", "Randy"), ("hrsa-stephanie", "Stephanie"), ]