0007_auto_20210910_1614.py 1011 B

1234567891011121314151617181920212223
  1. # Generated by Django 3.2.7 on 2021-09-10 20:14
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('testapp', '0006_indextestpage'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='eventindexpage',
  10. name='event_style',
  11. field=models.CharField(blank=True, choices=[('', 'Default'), ('block', 'Solid rectangles'), ('list-item', 'Dots with labels')], default='', help_text='How events look on the calendar.', max_length=255, verbose_name='Event Style'),
  12. ),
  13. migrations.AlterField(
  14. model_name='eventindexpage',
  15. name='default_calendar_view',
  16. field=models.CharField(blank=True, choices=[('', 'No calendar'), ('month', 'Month'), ('agendaWeek', 'Week'), ('agendaDay', 'Day'), ('listMonth', 'List of events')], default='month', help_text='The default look of the calendar on this page.', max_length=255, verbose_name='Calendar Style'),
  17. ),
  18. ]