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

Step 0 — Comment Imports

Monthly patient comment data imports from IT department

{% for imp in imports %} {% empty %} {% endfor %}
Hospital Year Month Status Total Rows Imported Errors Imported By Date
{{ imp.hospital }} {{ imp.year }} {{ imp.month }} {% if imp.status == 'completed' %} Completed {% elif imp.status == 'failed' %} Failed {% elif imp.status == 'processing' %} Processing {% else %} 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" }}
No imports yet.
{% endblock %}