Added filter functionality and combined both base.html

This commit is contained in:
2025-07-30 18:42:33 +03:00
parent c1183c22ea
commit 2d0d33d525
42 changed files with 604 additions and 81 deletions
+5
View File
@@ -17,6 +17,11 @@
<body>
<aside class="sidebar">
{% block aside %}
{% if user.user_type == 'AD' or user.user_type == 'EM' %}
{% include 'employee-sidebar.html' %}
{% elif user.user_type == 'CL' or user.user_type == 'CA' %}
{% include 'client-sidebar.html' %}
{% endif %}
{% endblock aside %}
</aside>