{% extends 'layouts/base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "Bulk Survey Jobs" %} - PX360{% endblock %} {% block content %}

{% trans "Bulk Survey Jobs" %}

{% trans "Track the status of bulk survey sending operations" %}

{% if jobs %}
{% for job in jobs %} {% endfor %}
{% trans "Job" %} {% trans "Hospital" %} {% trans "Progress" %} {% trans "Success" %} {% trans "Failed" %} {% trans "Status" %} {% trans "Created" %} {% trans "Actions" %}
{{ job.name|truncatechars:40 }}
{{ job.survey_template.name|truncatechars:30 }}
{{ job.hospital.name }}
{{ job.progress_percentage }}%
{{ job.success_count }} {% if job.failed_count > 0 %} {{ job.failed_count }} {% else %} - {% endif %} {{ job.get_status_display }} {{ job.created_at|date:"Y-m-d H:i" }}
{% else %}

{% trans "No Jobs Found" %}

{% trans "No bulk survey jobs have been created yet." %}

{% trans "Import Patients" %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}