{% extends "web/_base_rightbar.html" %} {% load artifacts %} {% load debusine %} {% block content %}

Artifact {{ artifact_label }}

Metadata
{{ artifact_data }}
{% if file %}

File

{% widget file %} {% elif file_list %}

Files

{% for fileinartifact in file_list %} {% endfor %}
Name Size (bytes)
{{ fileinartifact.basename }} {{ fileinartifact.file.size|filesizeformat }}
{% else %}

Files

The artifact does not have any files.

{% endif %} {% if artifact.relations.exists or reverse_extends.exists %}

Relations

{% for relation in artifact.relations.all %} {% include "web/_artifact-list-row.html" with artifact=relation.target %} {% endfor %} {% for relation in reverse_extends %} {% include "web/_artifact-list-row.html" with artifact=relation.artifact %} {% endfor %}
Relation Direction Type Name
{{ relation.type }}
{{ relation.type }}
{% endif %}
{% endblock %}