diff --git a/app/modules/clients/templates/clients/portal_dashboard.html b/app/modules/clients/templates/clients/portal_dashboard.html index 841dcb2..e262a16 100644 --- a/app/modules/clients/templates/clients/portal_dashboard.html +++ b/app/modules/clients/templates/clients/portal_dashboard.html @@ -1,16 +1,20 @@ {% extends "ui/templates/base/layout.html" %} {% block content %} -{% include "modules/clients/templates/clients/_client_tabs.html" %}
Client Portal
Track your compliance status, pending actions, required documents, messages and firm updates.
+Track pending actions, service status, documents, messages, bills and firm updates from one place.
+Simple client-facing status of your active services.
{{ note.message }}
View bills, receipts and payment options.
| Invoice | Date | Status | Balance | Action |
|---|---|---|---|---|
| {{ invoice.invoice_no }} | +{{ invoice.invoice_date.strftime('%d-%m-%Y') if invoice.invoice_date else '-' }} | +{{ invoice.status }} | +₹ {{ '%.2f'|format(invoice.balance_amount or 0) }} | +View{% if invoice.balance_amount and invoice.balance_amount > 0 %}|Pay{% endif %} | +
| No invoices found. | ||||
Recent working documents and files shared for active services.
Profile and permanent records shared with the firm.
Client-visible task comments, clarifications and updates.
{{ note.message }}
+ {% if note.task %}Open related service{% endif %} +Open items where the firm may need documents, replies or confirmation from you.
Nearest active service due dates.
Documents, replies or clarifications currently expected from you.
+| Service / Task | Status | FY / Period | Due | Action |
|---|---|---|---|---|
{{ task.task_name or (task.catalogue.service_name if task.catalogue else 'Task') }} {{ task.catalogue.service_name if task.catalogue else 'Service' }} |
+ {{ (task.status or 'pending')|replace('_',' ')|title }} | +{{ task.financial_year or '-' }} | +{{ task.internal_target_date.strftime('%d-%m-%Y') if task.internal_target_date else '-' }} | +Open | +
| No pending action from you. | ||||
Client-facing report shortcuts. Detailed exports continue through the existing pages.
+Status of GST, ITR, TDS, audit, notice and other active services.
+Items where your input or documents are required.
+Permanent and engagement documents visible to your login.
+Open bills, receipts and payment history.
+Firm messages and clarification history.
+Contact and statutory details maintained in the firm.
+Client-facing status of services handled by the firm.
| Service | FY / AY | Due Date | Assigned Team | Action |
|---|---|---|---|---|
| {{ row.catalogue.service_name if row.catalogue else 'Service' }} | +FY {{ row.financial_year or '-' }}{% if row.assessment_year %} / AY {{ row.assessment_year }}{% endif %} | +{{ row.current_due_date.strftime('%d-%m-%Y') if row.current_due_date else '-' }} | +{{ row.assigned_partner.full_name if row.assigned_partner else 'Firm team' }} | +View | +
| No active services found. | ||||