Add compatibility with Django 2.1
This commit is contained in:
parent
8b8508fd25
commit
d1c17abad2
4 changed files with 6 additions and 3 deletions
|
|
@ -103,6 +103,9 @@ STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesSto
|
|||
|
||||
ALLOWED_HOSTS = ['localhost', 'stages.pierre-coullery.ch']
|
||||
|
||||
# candidats admin shows confirmation_date readonly field twice.
|
||||
SILENCED_SYSTEM_CHECKS = ['admin.E012']
|
||||
|
||||
FABRIC_HOST = 'stages.pierre-coullery.ch'
|
||||
FABRIC_USERNAME = ''
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
Django==2.0.1
|
||||
Django>=2.0.1,<=2.2
|
||||
tabimport>=0.4.0
|
||||
openpyxl==2.4.9
|
||||
xlrd
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "admin/base_site.html" %}
|
||||
{% load i18n admin_static %}
|
||||
{% load i18n static %}
|
||||
|
||||
{% block extrastyle %}{{ block.super }}
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/dashboard.css' %}">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "admin/base_site.html" %}
|
||||
{% load i18n admin_static %}
|
||||
{% load i18n static %}
|
||||
|
||||
{% block extrastyle %}{{ block.super }}
|
||||
<style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue