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

{{ title }}

{% if not collection %}

Select a task configuration collection to inspect

{% if collections %}
{% for collection in collections %} {{ collection.name }} in {{ workspace }} {% endfor %}
{% else %}
{% endif %} {% else %}

Collection {{ collection.name }} in {{ collection.workspace }}

{% if collections|length > 1 %} {% endif %}
{% if form %}

{{ item_count }} entries available

{% for error in form.non_field_errors %}{% endfor %} {% for field in form %}
{{ field }} {% if field.errors %}
{% for error in field.errors %}{{ error }}{% endfor %}
{% endif %}
{% endfor %}

{% else %} {% endif %}
{% endif %}
{% if has_result %}

Lookup result

Default values
{{ default_values|format_yaml }}
Override values
{{ override_values|format_yaml }}

Configuration items used

{% for item in config_items %}
{{ item.name }}
{{ item.dict|format_yaml:"unsorted" }}
{% endfor %}
{% endif %} {% endblock %}