Skip to content

Commit 041f773

Browse files
committed
wip commit
1 parent 5867f74 commit 041f773

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Generated by Django 4.2.13 on 2024-07-30 08:18
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("work", "0034_add_earth_colour_theme"),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name="workpage",
15+
name="header_alt_text",
16+
field=models.CharField(
17+
blank=True,
18+
help_text="By default the image title (shown above) is used as the alt text. Use this field to provide more specific alt text if required.",
19+
max_length=255,
20+
),
21+
),
22+
migrations.AddField(
23+
model_name="workpage",
24+
name="header_image_is_decorative",
25+
field=models.BooleanField(
26+
default=False,
27+
help_text="If checked, this will make the alt text empty.",
28+
),
29+
),
30+
]

0 commit comments

Comments
 (0)