Collections, and installer patches

This commit is contained in:
Raelon Masters
2020-03-20 01:15:07 -04:00
parent 746dd405a8
commit 9327b01ff4
263 changed files with 509 additions and 365 deletions

View File

@@ -33,7 +33,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
SECRET_KEY = "@(9b9jslgg41u1u=mr)-2*-n2x0vef0zsy39*z@sz18&tvow18"
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
DEBUG = TEMPLATE_DEBUG = True
ALLOWED_HOSTS = CONFIG.allowed_hosts

View File

@@ -27,6 +27,11 @@ urlpatterns = [
path("search/", views.search, name="search"),
path("search/<query>", views.search, name="search"),
path("search/<query>/<_set>", views.search, name="search"),
path(
"show_collection/<_collection>/<_colset>",
views.show_collection,
name="show_collection",
),
]
if settings.DEBUG:
import debug_toolbar