-
Benjamin Hättasch authored
Use for slide generation Show effect it will have on AK detail page Add migration Add translations
Benjamin Hättasch authoredUse for slide generation Show effect it will have on AK detail page Add migration Add translations
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0046_present_by_default.py 569 B
# Generated by Django 3.1.8 on 2021-05-15 14:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('AKModel', '0045_event_tz_pytz_update'),
]
operations = [
migrations.AddField(
model_name='akcategory',
name='present_by_default',
field=models.BooleanField(blank=True, default=True, help_text='Present AKs of this category by default if AK owner did not specify whether this AK should be presented?', verbose_name='Present by default'),
),
]