Skip to content

Commit

Permalink
Add 1 new Bloom Coach and 2 new HRSA Designers
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraig3 committed Nov 19, 2024
1 parent 141467d commit d512d37
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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,
),
),
]
3 changes: 3 additions & 0 deletions bloom_nofos/nofos/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
("idit", "Idit"),
("julie", "Julie"),
("july", "July"),
("mick", "Mick"),
("moira", "Moira"),
("morgan", "Morgan"),
("shane", "Shane"),
Expand All @@ -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"),
]
Expand Down

0 comments on commit d512d37

Please sign in to comment.