{% extends "djprogress/base.html" %}
{% load i18n %}
{% block coltype %}colMS{% endblock %}
{% block bodyclass %}dashboard{% endblock %}
{% block footer %}
{% endblock %}
{% block content %}
{% blocktrans %}This page automatically refreshes every 5 seconds.{% endblocktrans %}
{% for progress in progresses %}
{{ progress.name }}
{% if progress.parent %}
{% trans "Parent" %} |
{{ progress.parent.name }} |
{% endif %}
{% trans "Last updated" %} |
{{ progress.last_updated|time:"H:i:s" }} |
{% if progress.is_just_now_updated %}
{% trans "just now" %}
{% else %}
{{ progress.last_updated|timesince }} {% trans "ago" %}
{% endif %}
|
{% trans "Est. time remaining" %} |
{{ progress.eta|time:"H:i:s" }} |
{% if progress.eta %}
{{ progress.eta|timeuntil }}
{% else %}
{% trans "calculating" %}...
{% endif %}
|
{% trans "Progress" %} |
{{ progress.current }} / {{ progress.total }} |
|
{% if progress.exception %}
{% trans "Exception" %} |
{% trans "Show exception" %} |
{% trans "Mark as resolved" %} |
{% endif %}
{% comment %}
{% trans "Total" %}: |
{{ model.stats.0 }}% |
|
{% endcomment %}
{% endfor %}
{% endblock %}