{% extends 'portal/base_portal.html' %} {% block title %}Dashboard - IXG Buyer Portal{% endblock %} {% block content %}
{{ total_batches }}
Total Batches
{{ active_shipments }}
Active Shipments
{{ documents|length }}
Recent Documents
Recent Batches
{% for b in recent_batches %} {% empty %} {% endfor %}
ReferenceGradeStatusHarvest Date
{{ b.batch_reference }} {{ b.grade|default:'-' }} {{ b.get_status_display }} {{ b.harvest_date|date:'d/m/Y'|default:'-' }}
No batches
Recent Documents
{% for d in documents %}
{{ d.file_name }}
{{ d.get_doc_type_display }} ยท {{ d.uploaded_at|date:'d/m/Y' }}
{% empty %}

No documents available

{% endfor %}
{% if subscription %}
Subscription
{{ subscription.get_status_display }} {{ subscription.get_plan_display }}
{% endif %}
{% endblock %}