forked from rc/aircox
cfr #121 Co-authored-by: Christophe Siraut <d@tobald.eu.org> Co-authored-by: bkfox <thomas bkfox net> Co-authored-by: Thomas Kairos <thomas@bkfox.net> Reviewed-on: rc/aircox#131 Co-authored-by: Chris Tactic <ctactic@noreply.git.radiocampus.be> Co-committed-by: Chris Tactic <ctactic@noreply.git.radiocampus.be>
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
# Generated by Django 4.2.1 on 2023-12-12 18:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("aircox", "0017_alter_navitem_text_alter_staticpage_attach_to"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="staticpage",
|
|
name="attach_to",
|
|
field=models.CharField(
|
|
blank=True,
|
|
choices=[
|
|
("", "Home Page"),
|
|
("timetable-list", "Timetable"),
|
|
("program-list", "Programs list"),
|
|
("episode-list", "Episodes list"),
|
|
("article-list", "Articles list"),
|
|
("page-list", "Publications list"),
|
|
("podcast-list", "Podcasts list"),
|
|
],
|
|
help_text="display this page content to related element",
|
|
max_length=32,
|
|
null=True,
|
|
verbose_name="attach to",
|
|
),
|
|
),
|
|
]
|