{% extends "cosmos/layout.html" %} {% block title %} {{ task }} {% endblock %} {% macro long_list(items) -%} {%- endmacro %} {% block content %}

Task Info

{% for k,v in task.attrs_as_dict().items() %} {% if k != 'tags' %}
{{ k }}
{{ v or None }}
{% endif %} {% endfor %} {% for tf in task.input_files %}
input file
{{ tf }}
{% endfor %} {% for tf in task.output_files %}
output file
{{ tf }}
{% endfor %}

Task Tags

{% for k,v in task.tags.items() %}
{{ k }}
{{ v }}
{% endfor %}
parents
{{ long_list(task.parents) }}
children
{{ long_list(task.children) }}
{{ task.output_command_script_path }}

Command

{{ task.command_script_text }}
{{ task.output_stdout_path }}

STDOUT

{{ task.stdout_text }}
{{ task.output_stderr_path }}

STDERR

{{ task.stderr_text }}

Resources

{% for field, value in resource_usage %} {% endfor %}
Name Value
{{ field| replace('_kb','') }} {{ field|format_resource_usage(value) }}
{% endblock %}