-
View My Services
+
Upload / View Documents
Messages from Firm
View Bills & Receipts
diff --git a/app/modules/clients/templates/clients/portal_partials/services_documents.html b/app/modules/clients/templates/clients/portal_partials/services_documents.html
new file mode 100644
index 0000000..42d1bde
--- /dev/null
+++ b/app/modules/clients/templates/clients/portal_partials/services_documents.html
@@ -0,0 +1,14 @@
+
+
+
+
Services & Documents
Track services handled by the firm and documents visible to you.
+
+
+
+ {% include "modules/clients/templates/clients/portal_partials/services.html" %}
+ {% include "modules/clients/templates/clients/portal_partials/documents.html" %}
+
diff --git a/app/modules/clients/ui.py b/app/modules/clients/ui.py
index 01530f1..fc37273 100644
--- a/app/modules/clients/ui.py
+++ b/app/modules/clients/ui.py
@@ -916,15 +916,17 @@ def _active_financial_year(request: Request) -> str | None:
CLIENT_PORTAL_TABS = {
"overview": "modules/clients/templates/clients/portal_partials/overview.html",
+ "action-centre": "modules/clients/templates/clients/portal_partials/action_centre.html",
+ "services-documents": "modules/clients/templates/clients/portal_partials/services_documents.html",
+ "billing-messages": "modules/clients/templates/clients/portal_partials/billing_messages.html",
+ "reports": "modules/clients/templates/clients/portal_partials/reports.html",
"pending": "modules/clients/templates/clients/portal_partials/pending.html",
"services": "modules/clients/templates/clients/portal_partials/services.html",
"documents": "modules/clients/templates/clients/portal_partials/documents.html",
"billing": "modules/clients/templates/clients/portal_partials/billing.html",
"messages": "modules/clients/templates/clients/portal_partials/messages.html",
- "reports": "modules/clients/templates/clients/portal_partials/reports.html",
}
-
def _client_dashboard_payload(db, client_row, financial_year: str | None = None) -> dict:
summary = build_client_portal_summary(db, client_row, financial_year=financial_year)
billing_summary = build_client_billing_summary(db, client_row, financial_year=financial_year)