-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add all notice options to admin settings
- Loading branch information
Showing
13 changed files
with
399 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 5.0.8 on 2024-08-23 13:17 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("blog", "0029_alter_blogentrypage_body_alter_blogindexpage_body_and_more"), | ||
("wagtailcore", "0094_alter_page_locale"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="category", | ||
name="locale", | ||
field=models.ForeignKey( | ||
editable=False, | ||
on_delete=django.db.models.deletion.PROTECT, | ||
related_name="+", | ||
to="wagtailcore.locale", | ||
verbose_name="locale", | ||
), | ||
), | ||
] |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
content_manager/migrations/0039_rename_notice_cmsdsfrconfig_notice_title.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 5.0.8 on 2024-08-23 13:18 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("content_manager", "0038_alter_contentpage_body"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="cmsdsfrconfig", | ||
old_name="notice", | ||
new_name="notice_title", | ||
), | ||
] |
Oops, something went wrong.