* moves diff_states message back to table top for direct presentation in compensation/detail/view.html * removes diff_states rendering in deadline card in compensation/detail/view.html * fixes before_state adding based on GET parameter * refactors UserActionlogEntryEnum into a UserAction TextChoice (Django 3.x) * adds ordering of compensation states depending on surface value * refactors ServerMessageImportance from enum into TextChoice (Django 3.x) * adds/updates translations
59 lines
1.3 KiB
Python
59 lines
1.3 KiB
Python
"""
|
|
Django settings for konova project.
|
|
|
|
Generated by 'django-admin startproject' using Django 3.1.2.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/3.1/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/3.1/ref/settings/
|
|
"""
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
# Load other settings
|
|
from konova.sub_settings.django_settings import *
|
|
|
|
# Num of days if user enables Remember-me on login
|
|
KEEP_LOGGED_DURATION = 30
|
|
|
|
# German DateTime string format
|
|
STRF_DATE_TIME = "%d.%m.%Y %H:%M:%S"
|
|
|
|
# Tables
|
|
RESULTS_PER_PAGE_PARAM = "rpp"
|
|
PAGE_PARAM = "page"
|
|
PAGE_SIZE_OPTIONS = [5, 10, 15, 20, 25, 50, 100]
|
|
PAGE_SIZE_OPTIONS_TUPLES = [
|
|
(5, 5),
|
|
(10, 10),
|
|
(15, 15),
|
|
(20, 20),
|
|
(25, 25),
|
|
(50, 50),
|
|
(100, 100),
|
|
]
|
|
PAGE_SIZE_DEFAULT = 5
|
|
PAGE_SIZE_MAX = 100
|
|
PAGE_DEFAULT = 1
|
|
|
|
# SSO settings
|
|
SSO_SERVER_BASE = "http://127.0.0.1:8000/"
|
|
SSO_SERVER = "{}sso/".format(SSO_SERVER_BASE)
|
|
SSO_PRIVATE_KEY = "CHANGE_ME"
|
|
SSO_PUBLIC_KEY = "CHANGE_ME"
|
|
|
|
# MAPS
|
|
DEFAULT_LAT = 50.00
|
|
DEFAULT_LON = 7.00
|
|
DEFAULT_ZOOM = 8.0
|
|
DEFAULT_SRID = 4326
|
|
|
|
# GROUPS
|
|
DEFAULT_GROUP = "Default"
|
|
ZB_GROUP = "Registration office"
|
|
ETS_GROUP = "Conservation office"
|
|
|
|
|
|
# HELP PAGE LINK
|
|
HELP_LINK = "https://dienste.naturschutz.rlp.de/doku/doku.php?id=ksp:start" |