{% extends base_template %} {% load debusine %} {% block content %}

{{ title }}

{% if specialized_view_path %}

{{ work_request.task_name }} view

{% endif %} {% if work_request.is_workflow or work_request.is_part_of_workflow %}

Workflow information

{% if perms.db.change_workrequest and work_request.can_be_unblocked and work_request.unblock_strategy == "manual" %}
Review blocked workflow step
{% if manual_unblock_log_entries %} {% include "web/_manual_unblock_log.html" with manual_unblock_log_entries=manual_unblock_log_entries only %} {% endif %}
{% csrf_token %} {{ manual_unblock_form.as_p }}
{% endif %} {% endif %} {% if work_request.requires_signature and user == work_request.created_by %}
Waiting for signature
Run debusine provide-signature {{ work_request.id }} to sign this request.
{% endif %} {% if validation_error %}

Validation error

{{ validation_error }}
{% endif %}
Metadata
{{ task_data }}
{% if source_artifacts %} {% include "web/_artifact-list.html" with artifacts=source_artifacts only %} {% elif source_artifacts_not_implemented %} {% else %} {% endif %} {% if built_artifacts %} {% include "web/_artifact-list.html" with artifacts=built_artifacts only %} {% else %} {% endif %}
Type Name
Listing source artifacts not yet implemented for this task type
No input artifacts
No artifacts produced
{% endblock %}