{% extends "wizard.html" %} {% block title %} Status check {% endblock %} {% block page-title %}
  • Processing Status Check
  • {% endblock %} {% block content %}
    {% if not user_info.processing_in_progress %}

    Congratulations! Initial call processing finished successfully.

    You can start oogling at all the cool data here.

    {% else %}

    Sorry! We've not finished processing your call data yet.

    {{ percentage_imported | floatformat:"2" }}%

    Currently, we've processed {{ percentage_imported | floatformat:"2" }}% of your data and it's taken us {{ lapsedMinutes | floatformat:"2" }} minutes, so if you have a relatively constant number of calls, it should take us around {{ minutesRemaining | floatformat:"2" }} minutes to finish.

    {% endif %}
    {% endblock %} {% block js %} {{ block.super }} {% endblock %}