-MIGDAL_TYPES = (
- EntryType('news', _('news'), commentable=False, on_main=True, promotable=True),
- EntryType('publications', _('publications'), commentable=False),
- EntryType('info', _('info'), commentable=False),
- EntryType('event', _('events'), commentable=False),
-)
+
+DEBUG_TOOLBAR_CONFIG = {
+ 'RESULTS_CACHE_SIZE': 100,
+}
+
+
+HAYSTACK_CONNECTIONS = {
+ 'default': {
+ 'ENGINE': 'haystack.backends.simple_backend.SimpleEngine',
+ },
+}
+
+
+FORMS_BUILDER_USE_SITES = False
+FORMS_BUILDER_EDITABLE_FIELD_MAX_LENGTH = True
+FORMS_BUILDER_EDITABLE_SLUGS = True
+FORMS_BUILDER_EXTRA_FIELDS = [
+ (100, 'contact.fields.HeaderField', 'Header'),
+ (101, 'contact.fields.SeparatorField', 'Separator'),
+]
+FORMS_BUILDER_HELPTEXT_MAX_LENGTH = 2048
+FORMS_BUILDER_REQUIRED_CSS_CLASS = 'required'