Remove obsolete setting in base.py

This commit is contained in:
Jan Tuomi
2017-11-02 23:20:57 +02:00
parent e5c00a47e8
commit 31e324e478
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -31,7 +31,7 @@
<form name="memberTextForm" action="/members/import_csv" enctype="multipart/form-data" method="POST">{% csrf_token %} <form name="memberTextForm" action="/members/import_csv" enctype="multipart/form-data" method="POST">{% csrf_token %}
<h3>{% trans "Upload file" %}</h3> <h3>{% trans "Upload file" %}</h3>
<input class="form-control-file" type="file" name="csvFile" /> <input class="form-control-file" type="file" accept=".csv" name="csvFile" />
<div class="form-group"> <div class="form-group">
<label>{% trans "Payment source" %}</label> <label>{% trans "Payment source" %}</label>
-4
View File
@@ -259,10 +259,6 @@ MEDIA_URL = '/media/'
LOGIN_URL = '/login/' LOGIN_URL = '/login/'
LOGIN_REDIRECT_URL = '/admin' LOGIN_REDIRECT_URL = '/admin'
# for django-excel
FILE_UPLOAD_HANDLERS = ("django_excel.ExcelMemoryFileUploadHandler",
"django_excel.TemporaryExcelFileUploadHandler")
SUIT_CONFIG = { SUIT_CONFIG = {
# header # header
'ADMIN_NAME': 'SIK Admin', 'ADMIN_NAME': 'SIK Admin',