{% extends 'portal/base_portal.html' %}
{% block title %}Compliance - IXG Buyer Portal{% endblock %}
{% block content %}
Shea butter is not listed in EUDR Annex I; the due-diligence status shown here is
evidence and buyer assurance provided by IXG, not an EU-mandated filing.
Certificates of Analysis (approved)
| Batch | Product | Issued | Download |
{% for c in approved_coas %}
| {{ c.batch.batch_reference }} |
Unrefined Shea Butter |
{{ c.issue_date|date:'d/m/Y'|default:'-' }} |
PDF |
{% empty %}
| No approved certificates available |
{% endfor %}
EUDR Due Diligence Status
| Batch | Status | Risk |
{% for c in eudr_cases %}
| {{ c.batch.batch_reference }} |
{{ c.get_status_display }} |
{{ c.get_risk_level_display }} |
{% empty %}
| No due-diligence cases recorded |
{% endfor %}
{% endblock %}