X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/43b04b4146227070fc21b2f85bb7267e7fbc7d67..434a8ca0e146d0ad9514978fffec916c90fb7542:/src/redakcja/settings/__init__.py diff --git a/src/redakcja/settings/__init__.py b/src/redakcja/settings/__init__.py index 67be05b5..61f2be53 100644 --- a/src/redakcja/settings/__init__.py +++ b/src/redakcja/settings/__init__.py @@ -1,3 +1,6 @@ +# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# import os.path import sentry_sdk from sentry_sdk.integrations.django import DjangoIntegration @@ -74,6 +77,7 @@ INSTALLED_APPS = ( 'pipeline', 'fnpdjango', 'django_cas_ng', + 'bootstrap4', 'catalogue', 'cover', @@ -125,8 +129,8 @@ PIPELINE = { 'css/filelist.css', ), 'output_filename': 'compressed/catalogue_styles.css', - }, - 'book': { + }, + 'book': { 'source_filenames': ( 'css/book.css', ), @@ -176,7 +180,7 @@ PIPELINE = { 'js/wiki/view_column_diff.js', ), 'output_filename': 'compressed/detail_scripts.js', - }, + }, 'wiki_img': { 'source_filenames': ( # libraries @@ -208,7 +212,7 @@ PIPELINE = { 'js/wiki/view_column_diff.js', ), 'output_filename': 'compressed/detail_img_scripts.js', - }, + }, 'catalogue': { 'source_filenames': ( 'js/catalogue/catalogue.js', @@ -216,8 +220,8 @@ PIPELINE = { 'email_mangler/email_mangler.js', ), 'output_filename': 'compressed/catalogue_scripts.js', - }, - 'book': { + }, + 'book': { 'source_filenames': ( 'js/book_text/jquery.eventdelegation.js', 'js/book_text/jquery.scrollto.js', @@ -247,4 +251,3 @@ else: dsn=SENTRY_DSN, integrations=[DjangoIntegration()] ) -