{% extends 'viewflow/base_module.html' %} {% load i18n viewflow material_frontend viewflow_frontend %} {% block breadcrumbs_items %} {% include 'viewflow/includes/breadcrumb_category.html' %} {{ view.flow_class.process_title }} #{{ process.pk }} {% endblock %} {% block content %} {% block left-panel %}
{% trans '#' %} | {% trans 'Description' %} | {% trans 'Owner' %} | {% trans 'Status' %} | {% for task in task_list %}
---|---|---|---|
{% flowurl task user=request.user as task_url %} {% if task_url %} {{ task.process.id }}/{{ task.id }} {% else %} {{ task.process.id }}/{{ task.id }} {% endif %} | {% if task_url %} {{ task.summary|default:task.flow_task }} {% else %} {{ task.summary|default:task.flow_task }} {% endif %} | {{ task.owner|default:"" }} | {{ task.get_status_display }} |