diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml
index c1d42a2..1fa47a7 100644
--- a/.idea/dataSources.xml
+++ b/.idea/dataSources.xml
@@ -1,20 +1,14 @@
-
+
sqlite.xerial
true
+ true
+ $PROJECT_DIR$/TimeDispatcher/settings.py
org.sqlite.JDBC
jdbc:sqlite:$PROJECT_DIR$/db.sqlite3
$ProjectFileDir$
-
-
- file://$APPLICATION_CONFIG_DIR$/jdbc-drivers/Xerial SQLiteJDBC/3.45.1/org/xerial/sqlite-jdbc/3.45.1.0/sqlite-jdbc-3.45.1.0.jar
-
-
- file://$APPLICATION_CONFIG_DIR$/jdbc-drivers/Xerial SQLiteJDBC/3.45.1/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
-
-
\ No newline at end of file
diff --git a/.idea/discord.xml b/.idea/discord.xml
index 104c42f..912db82 100644
--- a/.idea/discord.xml
+++ b/.idea/discord.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/.idea/httpClient.xml b/.idea/httpClient.xml
new file mode 100644
index 0000000..e4211cd
--- /dev/null
+++ b/.idea/httpClient.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/icon.svg b/.idea/icon.svg
new file mode 100644
index 0000000..0b1c36e
--- /dev/null
+++ b/.idea/icon.svg
@@ -0,0 +1,99 @@
+
+
+
+
diff --git a/TimeDispatcher/config.py b/TimeDispatcher/config.py
new file mode 100644
index 0000000..e0416ac
--- /dev/null
+++ b/TimeDispatcher/config.py
@@ -0,0 +1,3 @@
+class Config:
+ # Number of hours in an off-day
+ WORKING_HOURS_PER_OFF_DAY = 8.2
\ No newline at end of file
diff --git a/context_processors.py b/TimeDispatcher/context_processors.py
similarity index 72%
rename from context_processors.py
rename to TimeDispatcher/context_processors.py
index 664fa0a..9e0ec82 100644
--- a/context_processors.py
+++ b/TimeDispatcher/context_processors.py
@@ -1,3 +1,4 @@
+from TimeDispatcher.config import Config
from TimeDispatcher.settings import APP_VERSION, DEBUG
@@ -16,4 +17,11 @@ def navbar_links(request):
{'view': 'parents', 'label': 'Parents'},
{'view': 'import', 'label': 'Import'},
]
+ }
+
+def app_config(request):
+ return {
+ "config": {
+ "WORKING_HOURS_PER_OFF_DAY": Config.WORKING_HOURS_PER_OFF_DAY
+ }
}
\ No newline at end of file
diff --git a/TimeDispatcher/settings.py b/TimeDispatcher/settings.py
index 80f23bf..6a2f58d 100644
--- a/TimeDispatcher/settings.py
+++ b/TimeDispatcher/settings.py
@@ -19,7 +19,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
APP_VERSION = "0.1.0"
-load_dotenv(BASE_DIR / ".env")
+load_dotenv(BASE_DIR / ".env", override=True)
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/
@@ -68,8 +68,9 @@ 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'
+ 'TimeDispatcher.context_processors.app_config',
+ 'TimeDispatcher.context_processors.version',
+ 'TimeDispatcher.context_processors.navbar_links'
],
},
},
diff --git a/dispatcher/apps.py b/dispatcher/apps.py
index 8b4c088..a7e7e29 100644
--- a/dispatcher/apps.py
+++ b/dispatcher/apps.py
@@ -1,6 +1,16 @@
from django.apps import AppConfig
+from django.utils.autoreload import autoreload_started
+
+from TimeDispatcher.settings import BASE_DIR
+
+
+def watchdog(sender, **kwargs):
+ sender.watch_dir(BASE_DIR, ".env")
class DispatcherConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'dispatcher'
+
+ def ready(self):
+ autoreload_started.connect(watchdog)
diff --git a/templates/base.html b/templates/base.html
index ddb4a86..a9694fb 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -6,6 +6,9 @@
{% block title %}Title{% endblock %}
+
{% block head %}{% endblock %}