From ce9f5b566512dbcf93a91bf0c702304bdce6885e Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Wed, 6 May 2020 19:54:50 +0200 Subject: [PATCH] Fix static ? --- templates/tournament/pool_detail.html | 4 ++-- templates/tournament/syntheses_list.html | 4 ++-- tfjm/settings_prod.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/tournament/pool_detail.html b/templates/tournament/pool_detail.html index 9c91782..99948de 100644 --- a/templates/tournament/pool_detail.html +++ b/templates/tournament/pool_detail.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% load getconfig i18n django_tables2 static %} +{% load getconfig i18n django_tables2 %} {% block content %}
@@ -59,7 +59,7 @@
{% trans "Templates for syntheses are available here:" %} - PDF -- TEX + PDF -- TEX
{% if user.organizes %}
    diff --git a/templates/tournament/syntheses_list.html b/templates/tournament/syntheses_list.html index 7705569..8c323b5 100644 --- a/templates/tournament/syntheses_list.html +++ b/templates/tournament/syntheses_list.html @@ -1,11 +1,11 @@ {% extends "base.html" %} -{% load i18n crispy_forms_filters django_tables2 static %} +{% load i18n crispy_forms_filters django_tables2 %} {% block content %}
    {% trans "Templates for syntheses are available here:" %} - PDF -- TEX + PDF -- TEX
    {% if form %} diff --git a/tfjm/settings_prod.py b/tfjm/settings_prod.py index ec921ee..f934739 100644 --- a/tfjm/settings_prod.py +++ b/tfjm/settings_prod.py @@ -12,7 +12,7 @@ DATABASES = { } # Break it, fix it! -DEBUG = True +DEBUG = False # Mandatory ! ALLOWED_HOSTS = ['inscription.tfjm.org']