{% extends 'ops/base_ops.html' %} {% block title %}CoA Review - IXG Operations{% endblock %} {% block content %} {% if messages %} {% for m in messages %}
{{ m }}
{% endfor %} {% endif %}
Certificate Details
Batch{{ coa.batch.batch_reference }}
Status{{ coa.get_status_display }}
Versionv{{ coa.version }}
Specification{{ coa.spec_version|default:'-' }}
Issuer{{ coa.issuer|default:'-' }}
Issue Date{{ coa.issue_date|date:'d/m/Y'|default:'-' }}
Quality Approved By{{ coa.quality_approved_by.full_name|default:coa.quality_approved_by.email|default:'-' }}
Quality Approved At{{ coa.quality_approved_at|date:'d/m/Y H:i'|default:'-' }}
Released At{{ coa.released_at|date:'d/m/Y H:i'|default:'-' }}
Published At{{ coa.published_at|date:'d/m/Y H:i'|default:'-' }}
SHA-256{{ coa.sha256_hash|default:'-' }}
Summary PDF {{ coa.file_name }}
Source Documents

Independent laboratory report (authoritative):

{% if coa.source_document %} {{ coa.source_document.file_name }} {% else %}

No lab report linked. Upload the original laboratory PDF for the batch.

{% endif %} {% if lab_documents %}

All lab documents for batch:

{% for d in lab_documents %}
{{ d.file_name }}
{% endfor %} {% endif %}
Commercial Release
{% if coa.status == 'pending_approval' %}
{% csrf_token %}

Publishing exposes the summary PDF to authorised buyers and triggers buyer notification.

{% else %}

Commercial release approved. Buyer document and notification created.

{% endif %}
{% endblock %}