diff --git a/core/views/other.py b/core/views/other.py index 200b57b..ed03516 100644 --- a/core/views/other.py +++ b/core/views/other.py @@ -20,7 +20,7 @@ from troggle.parsers.imports import ( import_survex, import_surveyscans, ) - +from troggle.core.utils import current_expo from .auth import login_required_if_public """Utility functions and code to serve the control panel and individual user's @@ -149,7 +149,8 @@ def controlpanel(request): return render( request, "controlPanel.html", - {"error": 'You are logged in, but not logged in as "expoadmin". \nLogout and login again to contnue.'}, + {"error": 'You are logged in, but not logged in as "expoadmin". \nLogout and login again to contnue.', "year": current_expo()} + ) else: if request.method == "POST": @@ -158,13 +159,13 @@ def controlpanel(request): return render( request, "controlPanel.html", - {"expeditions": Expedition.objects.all(), "jobs_completed": jobs_completed}, + {"expeditions": Expedition.objects.all(), "jobs_completed": jobs_completed, "year": current_expo()}, ) else: return render( request, "controlPanel.html", - {"expeditions": Expedition.objects.all(), "jobs_completed": jobs_completed}, + {"expeditions": Expedition.objects.all(), "jobs_completed": jobs_completed, "year": current_expo()}, ) diff --git a/templates/controlPanel.html b/templates/controlPanel.html index 39d9bef..b8f66d5 100644 --- a/templates/controlPanel.html +++ b/templates/controlPanel.html @@ -21,6 +21,7 @@ {% endif %}

Administration Utilities