123456789101112131415161718192021222324 |
- # Generated by Django 3.2.7 on 2021-09-08 21:02
- from django.db import migrations, models
- import django.db.models.deletion
- class Migration(migrations.Migration):
- dependencies = [
- ('wagtailcrx', '0022_auto_20210731_1853'),
- ]
- operations = [
- migrations.AddField(
- model_name='coderedpage',
- name='index_order_by_classifier',
- field=models.ForeignKey(blank=True, help_text='Child pages will first be sorted following the order of this classifier’s terms (from Snippets > Classifiers).', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcrx.classifier', verbose_name='Order child pages by classifier'),
- ),
- migrations.AlterField(
- model_name='coderedpage',
- name='index_order_by',
- field=models.CharField(blank=True, choices=[('', 'Default Ordering'), ('-first_published_at', 'Date first published, newest to oldest'), ('first_published_at', 'Date first published, oldest to newest'), ('-last_published_at', 'Date updated, newest to oldest'), ('last_published_at', 'Date updated, oldest to newest'), ('title', 'Title, alphabetical'), ('-title', 'Title, reverse alphabetical')], default='', help_text='Child pages will then be sorted by this attribute.', max_length=255, verbose_name='Order child pages by'),
- ),
- ]
|