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

Edit Artifact

Update {{ artifact.name }}

Artifact Details
{% csrf_token %}
{% if errors.name %}
{{ errors.name }}
{% endif %} Unique name for this artifact (max 200 characters)
{% if errors.description %}
{{ errors.description }}
{% endif %} Optional: Detailed description of the artifact
Type of artifact
Activity that produces this artifact as output
Whether this artifact is required for the methodology
{% if artifact.template_file %}
{{ artifact.get_template_filename }} Download
{% endif %}
{% if artifact.template_file %} Optional: Upload a new file to replace the current template {% else %} Optional: Upload a template file for this artifact {% endif %}
Cancel
About Artifacts

Artifacts are outputs produced by activities that can be consumed as inputs by downstream activities in the workflow.

Examples include documentation, code files, diagrams, templates, and data files.

{% endblock %}