Begin implementing the CMS functions

This commit is contained in:
2022-07-21 13:50:36 +01:00
parent 3ff8cd6166
commit c5e811878b
4 changed files with 35 additions and 16 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.0.6 on 2022-07-13 14:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0005_contentblock_image1_contentblock_image2_and_more'),
]
operations = [
migrations.AddField(
model_name='contentblock',
name='page',
field=models.CharField(blank=True, max_length=255, null=True),
),
]