You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
890 B
34 lines
890 B
# -*- coding: utf-8 -*-
|
|
from django import forms
|
|
from django.conf import settings
|
|
from django.core.mail import send_mail
|
|
from django.utils.translation import ugettext as _
|
|
from place_exposition.models import PlaceExposition
|
|
from place_conference.models import PlaceConference
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from haystack.query import SearchQuerySet, EmptySearchQuerySet
|
|
from hvad.forms import TranslatableModelForm
|
|
from models import Page
|
|
|
|
from django.conf import settings
|
|
from django.forms import Textarea
|
|
from ckeditor.widgets import CKEditorWidget
|
|
|
|
|
|
|
|
class PageForm(TranslatableModelForm):
|
|
# language = 'ru'
|
|
|
|
class Meta:
|
|
model = Page
|
|
fields = ['url','title','h1','descriptions','keywords', 'body']
|
|
widgets = {
|
|
'body':CKEditorWidget,
|
|
'keywords':Textarea,
|
|
'descriptions':Textarea,
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|