add commit_id in settings
This commit is contained in:
parent
1bb3b12636
commit
182f854570
|
@ -1,4 +1,5 @@
|
||||||
from django.urls import resolve
|
from django.urls import resolve
|
||||||
|
from django.conf import settings
|
||||||
from django.shortcuts import get_object_or_404, redirect, Http404
|
from django.shortcuts import get_object_or_404, redirect, Http404
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from django.core.exceptions import PermissionDenied
|
from django.core.exceptions import PermissionDenied
|
||||||
|
@ -32,6 +33,7 @@ class DashboardView(LoginRequiredMixin):
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
context = super().get_context_data(**kwargs)
|
context = super().get_context_data(**kwargs)
|
||||||
context.update({
|
context.update({
|
||||||
|
"commit_id": settings.COMMIT,
|
||||||
'title': self.title,
|
'title': self.title,
|
||||||
'subtitle': self.subtitle,
|
'subtitle': self.subtitle,
|
||||||
'breadcrumb': self.breadcrumb,
|
'breadcrumb': self.breadcrumb,
|
||||||
|
|
|
@ -213,3 +213,4 @@ LOGGING = {
|
||||||
|
|
||||||
SNAPSHOT_PATH="/tmp/"
|
SNAPSHOT_PATH="/tmp/"
|
||||||
DATA_UPLOAD_MAX_NUMBER_FILES = 1000
|
DATA_UPLOAD_MAX_NUMBER_FILES = 1000
|
||||||
|
COMMIT = config('COMMIT', default='')
|
||||||
|
|
Loading…
Reference in New Issue