{% extends "base.html" %} {% load static %} {% block title %}{{ artifact.name }} - Artifact{% endblock %} {% block content %}

{{ artifact.name }} {% if artifact.is_required %} Required {% endif %}

{{ artifact.type }}

{% if can_edit %} {% endif %}
{% if artifact.description %}
Description

{{ artifact.description }}

{% endif %}
Producer Activity
{{ producer.name }}

{{ producer.workflow.name }}

Consumer Activities {{ consumers.count }}
{% if consumers %}
    {% for input in consumers %}
  • {{ input.activity.name }}

    {{ input.activity.workflow.name }} {% if input.is_required %} Required {% else %} Optional {% endif %}

  • {% endfor %}
{% else %}

No activities consume this artifact yet.

{% endif %}
{% if artifact.template_file %}
Template File

{{ artifact.get_template_filename }}

{% endif %}
Metadata
Type:
{{ artifact.type }}
Required:
{% if artifact.is_required %} Yes {% else %} No {% endif %}
Created:
{{ artifact.created_at|date:"M d, Y" }}
Updated:
{{ artifact.updated_at|date:"M d, Y" }}
{% endblock %}