feat: update Wagtail, add Threads footer link

This commit is contained in:
Konstantin 2024-10-05 22:22:03 +02:00
parent 9fe3acd32d
commit 3d59eafbf0
8 changed files with 72 additions and 8 deletions

View file

@ -0,0 +1,20 @@
# Generated by Django 5.0.2 on 2024-10-05 19:39
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('base', '0004_alter_footertext_body'),
('wagtailcore', '0094_alter_page_locale'),
]
operations = [
migrations.AlterField(
model_name='footertext',
name='locale',
field=models.ForeignKey(editable=False, on_delete=django.db.models.deletion.PROTECT, related_name='+', to='wagtailcore.locale', verbose_name='locale'),
),
]