This commit is contained in:
2018-06-07 18:58:54 +02:00
parent d7a082c0c7
commit 0bed73158f
25 changed files with 521 additions and 129 deletions

View File

@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-06-07 08:10
from __future__ import unicode_literals
from django.db import migrations
import djangocms_text_ckeditor.fields
class Migration(migrations.Migration):
dependencies = [
('project', '0007_gallery'),
]
operations = [
migrations.AddField(
model_name='timetable',
name='cta',
field=djangocms_text_ckeditor.fields.HTMLField(blank=True, null=True, verbose_name='CTA'),
),
migrations.AddField(
model_name='timetable',
name='outro',
field=djangocms_text_ckeditor.fields.HTMLField(blank=True, null=True, verbose_name='Schluss'),
),
]