Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new coaches and new designers #54

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,22 @@ 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

## [1.36.0] - 2023-11-19

### Added

- 2 new HRSA designers, and 1 new Bloom Coach

### Migrations

- (Same) 2 new HRSA designers, and 1 new Bloom Coach

## [1.35.0] - 2023-11-18

### Added
Expand Down
3 changes: 1 addition & 2 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
- Refac: short section names for breadcrumbs means we can loop
- .docx imports
- Investigate images
- Autodeploy from Github Actions
- Migrations!!

# DONE

- Autodeploy from Github Actions
- Migrations!!
- Default column widths for application table
- Only show Bloom nofos by default
- Add "copy" for section headings
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bloom-nofos"
version = "1.35.0"
version = "1.36.0"
description = "the no-code solo nofo web flow"
authors = ["Paul Craig <[email protected]>"]
readme = "README.md"
Expand Down