{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Comment Imports" %} - PX360{% endblock %} {% block content %}

{% trans "Step 0 — Comment Imports" %}

{% trans "Monthly patient comment data imports from IT department" %}

{% for imp in imports %} {% empty %} {% endfor %}
{% trans "Hospital" %} {% trans "Year" %} {% trans "Month" %} {% trans "Status" %} {% trans "Total Rows" %} {% trans "Imported" %} {% trans "Errors" %} {% trans "Imported By" %} {% trans "Date" %}
{{ imp.hospital }} {{ imp.year }} {{ imp.month }} {% if imp.status == 'completed' %} {% trans "Completed" %} {% elif imp.status == 'failed' %} {% trans "Failed" %} {% elif imp.status == 'processing' %} {% trans "Processing" %} {% else %} {% trans "Pending" %} {% endif %} {{ imp.total_rows }} {{ imp.imported_count }} {{ imp.error_count }} {{ imp.imported_by.get_full_name|default:"—" }} {{ imp.created_at|date:"Y-m-d H:i" }}
{% trans "No imports yet." %}
{% endblock %}