diff --git a/config/__pycache__/settings.cpython-311.pyc b/config/__pycache__/settings.cpython-311.pyc index 4c793a1..b46e844 100644 Binary files a/config/__pycache__/settings.cpython-311.pyc and b/config/__pycache__/settings.cpython-311.pyc differ diff --git a/config/__pycache__/urls.cpython-311.pyc b/config/__pycache__/urls.cpython-311.pyc index 0a0635b..64ce50c 100644 Binary files a/config/__pycache__/urls.cpython-311.pyc and b/config/__pycache__/urls.cpython-311.pyc differ diff --git a/config/settings.py b/config/settings.py index 560a7a0..5d50632 100644 --- a/config/settings.py +++ b/config/settings.py @@ -61,6 +61,7 @@ INSTALLED_APPS = [ 'django.contrib.staticfiles', 'core', 'accounting', + 'hr', ] MIDDLEWARE = [ diff --git a/config/urls.py b/config/urls.py index b731c7d..aebc6d8 100644 --- a/config/urls.py +++ b/config/urls.py @@ -9,6 +9,7 @@ urlpatterns = [ path("i18n/", include("django.conf.urls.i18n")), path("", include("core.urls")), path("accounting/", include("accounting.urls")), + path("hr/", include("hr.urls")), ] if settings.DEBUG: diff --git a/core/templates/base.html b/core/templates/base.html index 6ea8a9e..ab40dcd 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -219,6 +219,46 @@ + + +