{% if celery_task.is_processing %}
{% if celery_task.is_estimated_complete_soon %}
Completing Soon
{% else %}
Estimated {{ celery_task.estimated_time_remaining_verbose }} remaining
{% endif %}
{% elif celery_task.is_successful %}
Completed at {{ celery_task.completed_datetime|date:'g:i a l, F jS' }}
Took {{ celery_task.completion_time_verbose }}
{% elif celery_task.is_failed %}
Task Encountered an Error or Took to Long
Please try again, if the issues persists contact support
{% endif %}