added version + Gitea link in footer

This commit is contained in:
2025-01-26 19:48:51 +01:00
parent 029502d887
commit 500ff54537
6 changed files with 35 additions and 2 deletions

View File

@ -15,6 +15,8 @@ from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
APP_VERSION = "0.0.1"
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/
@ -64,6 +66,7 @@ TEMPLATES = [
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'context_processors.version',
'context_processors.navbar_links'
],
},