{% if workspace %}

Workspace: {{ workspace }}

{% endif %} {% if work_request_list %} {% for work_request in work_request_list %} {% endfor %}
Id {% include "web/_order.html" with name="id" order=order asc=asc only %} Created {% include "web/_order.html" with name="created_at" order=order asc=asc only %} Task type {% include "web/_order.html" with name="task_type" order=order asc=asc only %} Task {% include "web/_order.html" with name="task_name" order=order asc=asc only %} Status {% include "web/_order.html" with name="status" order=order asc=asc only %} Result {% include "web/_order.html" with name="result" order=order asc=asc only %}
{{ work_request.id }} {{ work_request.created_at|timesince }} {{ work_request.task_type }} {{ work_request.get_label }} {% include "web/_work_request-status.html" with status=work_request.status only %} {% include "web/_work_request-result.html" with result=work_request.result only %}
{% else %}

No work requests.

{% endif %} {% if not user.is_authenticated %}Not authenticated. Only work requests in public workspaces are listed.{% endif %}