mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
Tests: - All the icons appear as before in both light/dark themes. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
{% load plinth_extras %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans "Logs" %}: {{ app_info.name }}</h2>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
These are the last lines of the logs for services involved in this app.
|
|
If you want to report a bug, please use the <a
|
|
href="https://salsa.debian.org/freedombox-team/freedombox/issues">bug
|
|
tracker</a> and attach this log to the bug report.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<div class="alert alert-warning d-flex align-items-center">
|
|
<div class="me-2">
|
|
{% icon 'exclamation-triangle' %}
|
|
<span class="visually-hidden">{% trans "Caution:" %}</span>
|
|
</div>
|
|
<div>
|
|
{% blocktrans trimmed %}
|
|
Please remove any personal information from the log before submitting
|
|
the bug report.
|
|
{% endblocktrans %}
|
|
</div>
|
|
</div>
|
|
|
|
{% for component in logs %}
|
|
<section id="logs-section-{{ component.unit }}">
|
|
<h3>{{ component.unit }}: {{ component.description }}</h3>
|
|
<p>
|
|
<textarea class="log" readonly rows="10">{{ component.logs }}</textarea>
|
|
</p>
|
|
</section>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|