Forked from
KIF / AKPlanning
579 commits behind the upstream repository.
-
Add boolean flag to events whether they should appear on the overview/start page or just when visiting the correct url
Add boolean flag to events whether they should appear on the overview/start page or just when visiting the correct url
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'),
),
]