Skip to content
Snippets Groups Projects
Select Git revision
  • a801560d29a46a47203262ee9be0e31a99e532f9
  • main default protected
  • docker
  • feature-tracker
  • fix-api
  • feature-event-wizard
  • feature-akslides
  • fix-history-interest
  • feature-constraint-checking-wip
  • feature-constraint-checking
10 results

0037_event_public.py

Blame
  • Forked from KIF / AKPlanning
    843 commits behind the upstream repository.
    Benjamin Hättasch's avatar
    Benjamin Hättasch authored and Nadja Geisler committed
    Add boolean flag to events whether they should appear on the overview/start page or just when visiting the correct url
    4e940afd
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    0037_event_public.py 456 B
    # Generated by Django 3.0.6 on 2020-07-12 15:54
    
    from django.db import migrations, models
    
    
    class Migration(migrations.Migration):
    
        dependencies = [
            ('AKModel', '0036_protocol_link'),
        ]
    
        operations = [
            migrations.AddField(
                model_name='event',
                name='public',
                field=models.BooleanField(default=True, help_text='Show this event on overview page.', verbose_name='Public event'),
            ),
        ]