X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/1a407848c86505b6491a2d11a269782154fd8582..HEAD:/src/wolnelektury/settings/contrib.py diff --git a/src/wolnelektury/settings/contrib.py b/src/wolnelektury/settings/contrib.py index bf2962bf8..d03479f82 100644 --- a/src/wolnelektury/settings/contrib.py +++ b/src/wolnelektury/settings/contrib.py @@ -1,26 +1,15 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # -from django.utils.translation import ugettext_lazy as _ - HONEYPOT_FIELD_NAME = 'miut' PAGINATION_INVALID_PAGE_RAISES_404 = True THUMBNAIL_QUALITY = 95 +THUMBNAIL_ALTERNATIVE_RESOLUTIONS = [2] +THUMBNAIL_PRESERVE_FORMAT = True MODELTRANSLATION_DEFAULT_LANGUAGE = 'pl' MODELTRANSLATION_PREPOPULATE_LANGUAGE = 'pl' -MIGRATION_MODULES = { - 'getpaid': 'wolnelektury.migrations.getpaid', -} - -GETPAID_ORDER_DESCRIPTION = "{% load funding_tags %}{{ order|sanitize_payment_title }}" - -GETPAID_BACKENDS = ( - 'getpaid.backends.payu', -) - PIWIK_URL = '' PIWIK_SITE_ID = 0 PIWIK_TOKEN = '' @@ -30,6 +19,7 @@ PAYPAL_CONFIG = { 'client_id': '', 'client_secret': '', } +PAYPAL_ENABLED = True REST_FRAMEWORK = { "DEFAULT_RENDERER_CLASSES": ( @@ -54,3 +44,15 @@ HAYSTACK_CONNECTIONS = { '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_REQUIRED_CSS_CLASS = 'required' +FORMS_BUILDER_INACTIVE_VISIBLE = True +FORMS_BUILDER_TEMPLATE_NAME_P = 'forms/p.html'