Select Git revision
0039_event_wiki_template_name.py
Benjamin Hättasch authored and
Nadja Geisler
committed
Introduce field for wiki export template to Event model Use this for wiki export Fixes #85 Create and link new export view (auto-split by categories)
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0039_event_wiki_template_name.py 451 B
# Generated by Django 3.0.6 on 2020-09-29 22:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('AKModel', '0038_akorgamessage'),
]
operations = [
migrations.AddField(
model_name='event',
name='wiki_export_template_name',
field=models.CharField(blank=True, max_length=50, verbose_name='Wiki Export Template Name'),
),
]