CRM Dashboard

Assigned Projects

{{ stats.assigned_projects }}
Total assigned to you

Active Projects

{{ stats.active_projects }}
In progress

Pending Payment

{{ stats.pending_payments }}
Awaiting payment

My Assigned Projects ({{ projects.count }})

{% if projects %} {% for project in projects %} {% endfor %}
Project Client Status Budget Created Actions
{{ project.title }} {{ project.client.get_full_name }} {{ project.get_status_display }} ${{ project.budget|default:"N/A" }} {{ project.created_at|date:"M d, Y" }} View
{% else %}

No Projects Assigned Yet

You will see projects here when Lead Managers assign them to you.

{% endif %}

Pending Payments ({{ pending_payments.count }})

{% if pending_payments %}
{% for payment in pending_payments %}

{{ payment.project.title }}

Client: {{ payment.client.get_full_name }}
Amount: ${{ payment.amount }}
Method: {{ payment.get_payment_method_display }}
Payment From: {{ payment.get_payment_from_display }}
Date: {{ payment.payment_date|date:"M d, Y" }}
Transaction ID: {{ payment.transaction_id }}
{% if payment.screenshot %} View Screenshot {% endif %} {% if payment.status == 'approved' and payment.invoice_number %} View Invoice {% endif %}
{% csrf_token %}
{% csrf_token %}
{% endfor %}
{% else %}

No Pending Payments

All payments have been processed.

{% endif %}

All Payments History ({{ all_payments.count }})

{% if all_payments %} {% for payment in all_payments %} {% endfor %}
Project Client Amount Method Date Status Actions
{{ payment.project.title }} {{ payment.client.get_full_name }} ${{ payment.amount }} {{ payment.get_payment_method_display }} {{ payment.payment_date|date:"M d, Y" }} {{ payment.get_status_display }} {% if payment.status == 'approved' and payment.invoice_number %} Invoice {% else %} - {% endif %}
{% else %}

No Payments Yet

Payment history will appear here.

{% endif %}