Skip to content
Snippets Groups Projects
Select Git revision
  • f70416ca4cba77778316c61a214d369d5593f014
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

0055_ak_export.py

Blame
  • Benjamin Hättasch's avatar
    Benjamin Hättasch authored and Nadja Geisler committed
    Add flag (default value true)
    Use for wiki export
    Add migration, translation & test
    This implements #178
    3db7dc17
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0055_ak_export.py 453 B
    # Generated by Django 3.2.16 on 2022-12-26 22:38
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0054_default_slots'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='ak',
                name='include_in_export',
                field=models.BooleanField(default=True, help_text='Include AK in wiki export?', verbose_name='Export?'),
            ),
        ]