Files
WYGIWYH/app/templates/import_app/fragments/runs/log.html
T
2025-10-28 14:13:30 -03:00

14 lines
346 B
HTML

{% extends 'extends/offcanvas.html' %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block title %}{% translate 'Logs for' %} #{{ run.id }}{% endblock %}
{% block body %}
<div class="tw:card tw:bg-base-100 tw:shadow-xl tw:max-h-full tw:overflow-auto">
<div class="tw:card-body">
{{ run.logs|linebreaks }}
</div>
</div>
{% endblock %}