From 70a1eaba0d9d029d909e1ff7cb33a51595469389 Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Thu, 13 Jun 2024 14:45:24 +0200
Subject: [PATCH] update local settings example

---
 VIPSWeb/local_settings_sample.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/VIPSWeb/local_settings_sample.py b/VIPSWeb/local_settings_sample.py
index bb5d07d2..5f804737 100755
--- a/VIPSWeb/local_settings_sample.py
+++ b/VIPSWeb/local_settings_sample.py
@@ -103,13 +103,17 @@ CACHES = {
     }
 }
 
+#### Site customization settings ####
 # Site name - appears in header of all pages. HTML is allowed
 SITE_NAME = "Example site title"
 
+# Set this if you want to override which app is the start app
+#ROOT_URLCONF = 'fibl.urls'
+
 # Path to the site's logo. 
 # E.g. "images/logo_vips_newest.png" -> /VIPSWeb/static/images/logo_vips_newest.png
 # E.g. "fibl/images/fibl_logo.png" -> /fibl/static/fibl_images/fibl_logo.png
-SITE_LOGO_PATH = "fibl/images/fibl_logo.png"
+SITE_LOGO_PATH = "images/logo_vips_newest.png"
 
 
 # Insert Web Analytics Script?
-- 
GitLab