Skip to content

Commit

Permalink
Better field naming
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhowbrook committed Dec 14, 2023
1 parent b73d815 commit d30d371
Show file tree
Hide file tree
Showing 7 changed files with 1,725 additions and 67 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.2.23 on 2023-12-13 14:53
# Generated by Django 3.2.23 on 2023-12-14 10:27

import wagtail.blocks
import wagtail.blocks.static_block
Expand Down Expand Up @@ -671,15 +671,15 @@ class Migration(migrations.Migration):
),
("title", wagtail.blocks.CharBlock(help_text="Heading for the card.")),
(
"category",
"highlighted_metadata",
wagtail.blocks.CharBlock(
help_text="Category text for the card.", required=False
help_text="Metadata to highlight on the card.", required=False
),
),
(
"date_meta",
"metadata",
wagtail.blocks.CharBlock(
help_text="Date and time or other information.", required=False
help_text="Generic metadata.", required=False
),
),
(
Expand Down Expand Up @@ -956,16 +956,16 @@ class Migration(migrations.Migration):
),
),
(
"category",
"highlighted_metadata",
wagtail.blocks.CharBlock(
help_text="Category text for the card.",
help_text="Metadata to highlight on the card.",
required=False,
),
),
(
"date_meta",
"metadata",
wagtail.blocks.CharBlock(
help_text="Date and time or other information.",
help_text="Generic metadata.",
required=False,
),
),
Expand Down
Loading

0 comments on commit d30d371

Please sign in to comment.