Untranslate contact form
This commit is contained in:
parent
273c4352c0
commit
b8462fc627
2 changed files with 46 additions and 24 deletions
42
publichealth/home/migrations/0011_auto_20170412_1256.py
Normal file
42
publichealth/home/migrations/0011_auto_20170412_1256.py
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.6 on 2017-04-12 10:56
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('home', '0010_auto_20170410_2307'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RenameField(
|
||||||
|
model_name='contactform',
|
||||||
|
old_name='intro_de',
|
||||||
|
new_name='intro',
|
||||||
|
),
|
||||||
|
migrations.RenameField(
|
||||||
|
model_name='contactform',
|
||||||
|
old_name='intro_fr',
|
||||||
|
new_name='thanks',
|
||||||
|
),
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='contactform',
|
||||||
|
name='thanks_de',
|
||||||
|
),
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='contactform',
|
||||||
|
name='thanks_fr',
|
||||||
|
),
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='contactform',
|
||||||
|
name='title_fr',
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='articlepage',
|
||||||
|
name='on_homepage',
|
||||||
|
field=models.BooleanField(default=False, help_text='Auf der Frontpage anzeigen', verbose_name='Featured'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -19,32 +19,12 @@ class ContactFormField(AbstractFormField):
|
||||||
page = ParentalKey('ContactForm', related_name='form_fields')
|
page = ParentalKey('ContactForm', related_name='form_fields')
|
||||||
|
|
||||||
class ContactForm(AbstractEmailForm):
|
class ContactForm(AbstractEmailForm):
|
||||||
title_fr = CharField(max_length=255, default="")
|
intro = RichTextField(default='', blank=True)
|
||||||
trans_title = TranslatedField(
|
thanks = RichTextField(default='', blank=True)
|
||||||
'title',
|
|
||||||
'title_fr',
|
|
||||||
)
|
|
||||||
|
|
||||||
intro_de = RichTextField(default='', blank=True)
|
|
||||||
intro_fr = RichTextField(default='', blank=True)
|
|
||||||
trans_intro = TranslatedField(
|
|
||||||
'intro_de',
|
|
||||||
'intro_fr',
|
|
||||||
)
|
|
||||||
|
|
||||||
thanks_de = RichTextField(default='', blank=True)
|
|
||||||
thanks_fr = RichTextField(default='', blank=True)
|
|
||||||
trans_thanks = TranslatedField(
|
|
||||||
'thanks_de',
|
|
||||||
'thanks_fr',
|
|
||||||
)
|
|
||||||
|
|
||||||
content_panels = AbstractEmailForm.content_panels + [
|
content_panels = AbstractEmailForm.content_panels + [
|
||||||
FieldPanel('intro_de', classname="full"),
|
FieldPanel('intro', classname="full"),
|
||||||
FieldPanel('thanks_de', classname="full"),
|
FieldPanel('thanks', classname="full"),
|
||||||
FieldPanel('title_fr', classname="full"),
|
|
||||||
FieldPanel('intro_fr', classname="full"),
|
|
||||||
FieldPanel('thanks_fr', classname="full"),
|
|
||||||
InlinePanel('form_fields', label="Form fields"),
|
InlinePanel('form_fields', label="Form fields"),
|
||||||
MultiFieldPanel([
|
MultiFieldPanel([
|
||||||
FieldRowPanel([
|
FieldRowPanel([
|
||||||
|
|
Loading…
Reference in a new issue