{% extends "remapp/base.html" %} {% block headextras %} {% if current %} {% endif %} {% endblock %} {% block navbar %}
  • CT
  • Fluoroscopy
  • Mammography
  • {% endblock %} {% block exportnav %}
  • Exports
  • {% endblock %} {% block mainblock %} {% load humanize %} {% load remappduration %} {% if admin.exportperm or admin.adminperm %} {% if messages %} {% for message in messages %}
    {% if message.level == 40 %} Warning! {% endif %} {{ message }}
    {% endfor %} {% endif %} {% if current %}

    Export tasks in progress

    {% for tsk in current %} {% endfor %}
    Task IDExportedModalityExport typeNo. recordsProgress
    {{ tsk.task_id }} {{ tsk.export_date|naturaltime }} {{ tsk.modality }} {{ tsk.export_type }} {{ tsk.num_records }} {{ tsk.progress }} Abort
    {% endif %} {% if errors %}

    Export tasks in error state

    {% for tsk in errors %} {% endfor %}
    Task IDExportedModalityExport typeNo. recordsError message
    {{ tsk.task_id }} {{ tsk.export_date|naturaltime }} {{ tsk.modality }} {{ tsk.export_type }} {{ tsk.num_records }} {{ tsk.progress }} Delete task
    {% endif %}

    Completed export tasks

    {% for tsk in complete %} {% endfor %}
    ExportedModalityExport typeNo. recordsExport timeDownloadDelete?
    {{ tsk.export_date|naturaltime }} {{ tsk.modality }} {{ tsk.export_type }} {{ tsk.num_records }} {{ tsk.processtime|naturalduration }} {{ tsk.filename }}
    {% if complete.count > 0 %} {% endif %}
    {% else %}

    Sorry, you don't have enough permissions to enable study export.

    {% endif %} {% endblock %} {% block jsblock %} {% endblock %}