{% extends "base.html" %} {% block title %}HM QC - Quality Control{% endblock %} {% block content %}

HM Quality Control

Upload and validate H&M marketing assets (PDF, images) with AI-powered quality checks and scoring.

Start QC Check

Upload a file to begin quality control validation

Upload File
Features
  • Weighted scoring (0-100 scale)
  • AI-powered quality assessment
  • Image dimension validation
  • Real-time progress tracking
  • Title legibility assessment
{% if batches %}

Batch Reports

{% for batch in batches %}
{{ batch.job_number or 'Batch' }} {{ batch.created_at.strftime('%Y-%m-%d %H:%M') }} ({{ batch.total }} files) {{ batch.passed }} passed {% if batch.warnings %}{{ batch.warnings }} warnings{% endif %} {% if batch.failed %}{{ batch.failed }} failed{% endif %} Avg: {{ batch.avg_score }}
{% for report in batch.reports %} {% endfor %}
Filename Score Status
{{ report.filename }} {% if report.score is not none %} {{ '%.0f' % report.score }} {% else %}-{% endif %} {{ report.status }}
{% endfor %}
{% endif %} {% if individual_reports %}

Individual Reports

{% for report in individual_reports %} {% endfor %}
Filename Job # Score Status Date
{{ report.filename }} {{ report.job_number or '-' }} {% if report.score is not none %} {{ '%.0f' % report.score }} {% else %}-{% endif %} {{ report.status }} {{ report.created_at.strftime('%Y-%m-%d %H:%M') if report.created_at }}
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}