feat: presets

This commit is contained in:
Herculino Trotta
2025-01-23 11:43:35 -03:00
parent 16fbead2f9
commit cabd03e7e6
12 changed files with 223 additions and 12 deletions
@@ -0,0 +1,13 @@
{% 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 %}