{% extends "base.html" %} {% block title %}Artifact - {{ artifact.kind }} - devqubit{% endblock %} {% block content %}
Kind
{{ artifact.kind }}
Role
{{ artifact.role }}
Media Type
{{ artifact.media_type }}
Digest
{{ artifact.digest }}
Size
{{ size }} bytes{% if size > 1048576 %} ({{ "%.1f" | format(size / 1048576) }} MB){% elif size > 1024 %} ({{ "%.1f" | format(size / 1024) }} KB){% endif %}

Content

{% if error %}

⚠ Error loading artifact: {{ error }}

Download to view

{% elif not preview_available %}

Artifact too large for preview ({{ "%.1f" | format(size / 1048576) }} MB exceeds {{ "%.0f" | format(max_preview_size / 1048576) }} MB limit)

Download the artifact to view its contents.

Download

{% elif content_json %}
{{ content_json | json_pretty }}
{% elif content %}
{{ content }}
{% else %}

Binary content ({{ size }} bytes) - download to view

{% endif %}
{% endblock %}