{% load i18n %} {% load processlib_tags %}

{{ process|capfirst }}

{{ process.full.description }}

{% trans "Status" %}
{{ process.get_status_display }}
{% trans "Started at" %}
{{ process.started_at|date:"SHORT_DATETIME_FORMAT" }}
{% if process.finished_at %}
{% trans "Finished at" %}
{{ process.finished_at|date:"SHORT_DATETIME_FORMAT" }}
{% endif %}
{% include "processlib/process_to_do_partial.html" %}