diff --git a/core/__pycache__/urls.cpython-311.pyc b/core/__pycache__/urls.cpython-311.pyc index 37cd860..27c6d4b 100644 Binary files a/core/__pycache__/urls.cpython-311.pyc and b/core/__pycache__/urls.cpython-311.pyc differ diff --git a/core/__pycache__/views.cpython-311.pyc b/core/__pycache__/views.cpython-311.pyc index 12b2d47..163134e 100644 Binary files a/core/__pycache__/views.cpython-311.pyc and b/core/__pycache__/views.cpython-311.pyc differ diff --git a/core/templates/core/completed_projects.html b/core/templates/core/completed_projects.html new file mode 100644 index 0000000..1f525f1 --- /dev/null +++ b/core/templates/core/completed_projects.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} + +{% block title %}Completed Projects{% endblock %} + +{% block content %} +
+

Completed Projects

+

This page will contain the completed projects.

+
+{% endblock %} diff --git a/core/templates/core/daily_logs.html b/core/templates/core/daily_logs.html new file mode 100644 index 0000000..9673521 --- /dev/null +++ b/core/templates/core/daily_logs.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} + +{% block title %}Daily Logs{% endblock %} + +{% block content %} +
+

Daily Logs

+

This page will contain the daily logs.

+
+{% endblock %} diff --git a/core/templates/core/documents.html b/core/templates/core/documents.html new file mode 100644 index 0000000..c4079b8 --- /dev/null +++ b/core/templates/core/documents.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} + +{% block title %}Documents{% endblock %} + +{% block content %} +
+

Documents

+

This page will contain the documents.

+
+{% endblock %} diff --git a/core/templates/core/equipment.html b/core/templates/core/equipment.html new file mode 100644 index 0000000..3825b5d --- /dev/null +++ b/core/templates/core/equipment.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} + +{% block title %}Equipment{% endblock %} + +{% block content %} +
+

Equipment

+

This page will contain the equipment.

+
+{% endblock %} diff --git a/core/templates/core/incidents.html b/core/templates/core/incidents.html new file mode 100644 index 0000000..ce1fe0d --- /dev/null +++ b/core/templates/core/incidents.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} + +{% block title %}Incidents{% endblock %} + +{% block content %} +
+

Incidents

+

This page will contain the incidents.

+
+{% endblock %} diff --git a/core/templates/core/index.html b/core/templates/core/index.html index 34591f3..afd81d9 100644 --- a/core/templates/core/index.html +++ b/core/templates/core/index.html @@ -47,56 +47,68 @@

Menu

-

Daily Operations

+
+

Daily Operations

-

Compliance

+ {% if 'Manager' in user_groups or 'Admin' in user_groups %} +
+

Compliance

-

Projects

+
+

Projects

+ {% endif %}
+ {% if 'Manager' in user_groups or 'Admin' in user_groups %}

Ready to launch a new project?

@@ -104,11 +116,14 @@
+ {% endif %}