mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-25 01:58:54 +02:00
14 lines
328 B
HTML
14 lines
328 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Logs for' %} #{{ run.id }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="card bg-base-100 shadow-xl max-h-full overflow-auto">
|
|
<div class="card-body">
|
|
{{ run.logs|linebreaks }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|