mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-23 17:18:44 +02:00
14 lines
312 B
HTML
14 lines
312 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 tw-max-h-full tw-overflow-auto">
|
|
<div class="card-body">
|
|
{{ run.logs|linebreaks }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|