{% extends "base.html" %} {% block title %}{% if locale == 'ru' %}Артефакт{% else %}Artifact{% endif %} · {{ artifact_id }} · {{ app_title }}{% endblock %} {% block content %}
{{ error }}
{{ error }}
{% if locale == 'ru' %}Не удалось загрузить данные артефакта.{% else %}Artifact data could not be loaded.{% endif %}
{% if locale == 'ru' %}Предпросмотр недоступен для этого типа артефакта.{% else %}Preview not available for this artifact type.{% endif %}
{{ preview.error }}
{{ preview.preview_data | tojson(indent=2) }}
{% elif preview.preview_type == "jsonl" and preview.preview_data is
iterable and preview.preview_data is not string %}
{% for row in preview.preview_data %}{{ row | tojson }}
{% endfor %}
{% elif preview.preview_type == "text" %}
{{ preview.preview_data }}
{% endif %}