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

0039_event_wiki_template_name.py

Blame
  • Benjamin Hättasch's avatar
    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)
    fcb2ef1f
    History
    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'),
            ),
        ]