{% extends "base.html" %} {% load static %} {% block title %}Artifacts{% endblock %} {% block content %}

Artifacts

Deliverables and outputs produced by activities across all playbooks

{% if query %} Clear {% endif %}
{% if artifacts %}
Artifacts {{ artifacts|length }}
{% for artifact in artifacts %} {% endfor %}
Name Type Playbook Producer Actions
{{ artifact.name }} {% if artifact.is_required %} Required {% endif %} {{ artifact.type }} {{ artifact.playbook.name }} {{ artifact.produced_by.name }}
{% else %}

No artifacts yet

{% if query %}

No artifacts match "{{ query }}".

Clear search {% else %}

Artifacts are created from playbook detail pages.

Go to Playbooks {% endif %}
{% endif %}
{% endblock %}