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>
This commit is contained in:
32
aircox/migrations/0016_alter_staticpage_attach_to.py
Normal file
32
aircox/migrations/0016_alter_staticpage_attach_to.py
Normal file
@ -0,0 +1,32 @@
|
||||
# Generated by Django 4.2.1 on 2023-11-28 01:15
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("aircox", "0015_alter_schedule_timezone_alter_staticpage_attach_to"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="staticpage",
|
||||
name="attach_to",
|
||||
field=models.SmallIntegerField(
|
||||
blank=True,
|
||||
choices=[
|
||||
(0, "Home page"),
|
||||
(1, "Diffusions page"),
|
||||
(2, "Logs page"),
|
||||
(3, "Programs list"),
|
||||
(4, "Episodes list"),
|
||||
(5, "Articles list"),
|
||||
(6, "Publications list"),
|
||||
(7, "Podcasts list"),
|
||||
],
|
||||
help_text="display this page content to related element",
|
||||
null=True,
|
||||
verbose_name="attach to",
|
||||
),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user