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 2 images, 1 new coach, and 1 new designer #118

Merged
merged 4 commits into from
Dec 16, 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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve

### Added

### Changed

### Fixed

## [1.40.0] - 2023-12-16

### Added

- Add new command for downloading NOFOs with published times
- Add new command to count all section name lengths and subsection name lengths
- Add inline image for CDC-RFA-25-0061
- Add cover image for HRSA-25-019
- Add cover image for HHS-2025-ACF-ECD-TH-0106
- Add cover image for HSRA-25-071

### Changed

Expand All @@ -23,6 +33,10 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve
- Loading gif also used on re-import page
- bug: since adding replace_links, replace_chars was not being applied

### Migrations

- Add one new coach ("Sara") and 1 new HRSA designer ("KieuMy")

## [1.39.0] - 2023-12-04

### Added
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Generated by Django 5.0.8 on 2024-12-16 17:52

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("nofos", "0079_cleanup_update_print_logs"),
]

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"),
("sara", "Sara"),
("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\xa0V"),
("hrsa-kieumy", "KieuMy"),
],
help_text="The designer is responsible for the layout of this NOFO.",
max_length=16,
),
),
]
4 changes: 3 additions & 1 deletion bloom_nofos/nofos/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
("mick", "Mick"),
("moira", "Moira"),
("morgan", "Morgan"),
("sara", "Sara"),
("shane", "Shane"),
]

Expand All @@ -37,7 +38,8 @@
("hrsa-ericka", "Ericka"),
("hrsa-jene", "Jene"),
("hrsa-randy", "Randy"),
("hrsa-stephanie", "Stephanie V"),
("hrsa-stephanie", "Stephanie V"),
("hrsa-kieumy", "KieuMy"),
]


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.39.0"
version = "1.40.0"
description = "the no-code solo nofo web flow"
authors = ["Paul Craig <[email protected]>"]
readme = "README.md"
Expand Down
Loading