1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

add host name for logs beside others

This commit is contained in:
catborise 2021-05-31 11:39:09 +03:00
parent 70bc5a4408
commit 610efd5520
7 changed files with 85 additions and 62 deletions

View file

@ -24,7 +24,7 @@ def appsettings(request):
themes_list = os.listdir(sass_dir.value + "/wvc-theme")
except FileNotFoundError as err:
messages.error(request, err)
addlogmsg(request.user.username, "", err)
addlogmsg(request.user.username, "-", "", err)
# Bootstrap settings related with filesystems, because of that they are excluded from other settings
appsettings = AppSettings.objects.exclude(description__startswith="Bootstrap").order_by("name")
@ -41,7 +41,7 @@ def appsettings(request):
msg = err
messages.error(request, msg)
addlogmsg(request.user.username, "", msg)
addlogmsg(request.user.username, "-", "", msg)
return HttpResponseRedirect(request.get_full_path())
if "BOOTSTRAP_THEME" in request.POST:
@ -70,7 +70,7 @@ def appsettings(request):
msg = err
messages.error(request, msg)
addlogmsg(request.user.username, "", msg)
addlogmsg(request.user.username, "-", "", msg)
return HttpResponseRedirect(request.get_full_path())
for setting in appsettings:
@ -85,7 +85,7 @@ def appsettings(request):
msg = err
messages.error(request, msg)
addlogmsg(request.user.username, "", msg)
addlogmsg(request.user.username, "-", "", msg)
return HttpResponseRedirect(request.get_full_path())
return render(request, "appsettings.html", locals())