Add links for submitting issues or features.

This commit is contained in:
Jim Driessen
2017-09-28 23:11:58 +02:00
committed by Daan Sprenkels
parent 416ae40763
commit 993ba2acca
4 changed files with 26 additions and 3 deletions

View File

@ -66,6 +66,7 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'marietje.context_processors.global_settings',
],
},
},
@ -79,8 +80,12 @@ WSGI_APPLICATION = 'marietje.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.mysql',
'NAME': 'marietje',
'USER': 'marietje',
'PASSWORD': 'UYmINKUDXIfY1qudVhbr5UhJ61kVwZPA',
'HOST': 'localhost',
'PORT': '3306',
}
}
@ -155,3 +160,6 @@ CONTACT_EMAIL = 'marietje@science.ru.nl'
STATS_TOP_COUNT = 50
STATS_REQUEST_IGNORE_USER_IDS = (51, 515)
ISSUES_URL = 'https://gitlab.science.ru.nl/Marietje/MarietjeDjango/issues'
MERGE_REQUESTS_URL = 'https://gitlab.science.ru.nl/Marietje/MarietjeDjango/merge_requests'