Skip to content

Commit

Permalink
Add template field to historical page #3953
Browse files Browse the repository at this point in the history
  • Loading branch information
joemull authored and mauromsl committed Feb 5, 2024
1 parent 5fe211c commit 55de136
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/cms/migrations/0017_historicalpage_template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.18 on 2024-02-05 13:40

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('cms', '0016_merge_0013_page_template_0015_historicalpage'),
]

operations = [
migrations.AddField(
model_name='historicalpage',
name='template',
field=models.CharField(
blank=True,
help_text='The custom template to use instead of the content '
'field.',
max_length=100,
),
),
]

0 comments on commit 55de136

Please sign in to comment.