diff --git a/ROLLING OVER.md b/ROLLING OVER.md index de37e784..f89269ad 100644 --- a/ROLLING OVER.md +++ b/ROLLING OVER.md @@ -117,6 +117,10 @@ Update the Django "site" in the Admin. These are done in code. See commits from previous years adding/modifying tracks. Essentially you need to modify `pinaxcon/proposals/admin.py`, `.../forms.py`, `.../models.py` and `pinaxcon/settings.py`. Then run `makemigrations` and `migrate`. +In Django Admin, add "conference sections" matching the tracks, "proposal sections" matching the sections and then "proposal kinds" matching the proposal sections. For any re-use proposal kinds, be sure you've updated them to the current year's section. + +After adding tracks, run `manage.py create_review_permissions`. + # Step 7: Update teams diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index b8e3b46b..9c912264 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -406,7 +406,7 @@ PROPOSAL_FORMS = { "foss-in-daily-life": "pinaxcon.proposals.forms.FOSSInDailyLifeProposalForm", "gnu-toolchain": "pinaxcon.proposals.forms.GNUToolchainProposalForm", "linux-kernel": "pinaxcon.proposals.forms.LinuxKernelProposalForm", - "open-source-governance-and-community-sustainability": "pinaxcon.proposals.forms.OpenSourceGovernanceAndCommunitySustainabilityProposalForm", + "open-source-governance": "pinaxcon.proposals.forms.OpenSourceGovernanceAndCommunitySustainabilityProposalForm", "right-to-repair": "pinaxcon.proposals.forms.RightToRepairProposalForm", "science-of-community": "pinaxcon.proposals.forms.ScienceOfCommunityProposalForm", "student-presentations": "pinaxcon.proposals.forms.StudentPresentationsProposalForm",