{% extends request.resolver_match.app.base_template_name|default:'viewflow/workflow/base_page.html' %} {% load i18n viewflow workflow %} {% block content %}

{{ process.brief }}

{{ view.flow_class.process_title }} #{{ process.pk }}

{% for task in task_list %} {% if task.flow_task|has_perm:request.user %} {% reverse task.flow_task 'index' process.pk task.pk as task_url %} {% else %} {% endif%} {% endfor %}
{% trans '#' %} {% trans 'Description' %} {% trans 'Owner' %} {% trans 'Started' %} {% trans 'Finished' %} {% trans 'Status' %}
{{ task.process.id }}/{{ task.id }} {{ task.brief|default:task.flow_task }} {{ task.process.id }}/{{ task.id }} {{ task.brief|default:task.flow_task }}{{ task.owner|default:"" }} {{ task.created }} {{ task.finished|default:"" }} {{ task.get_status_display }}
{% if process.status == 'NEW' %}
{% trans "Cancel" %}
{% endif %}
{% block panel-cell %}
{% include_process_data process %}
{% endblock panel-cell %}
{% endblock content %}