mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Ensure that .sr-only is replaced with newer classes. - Ensure that icons are present for all alerts. - Use flex-box for display of icons on the left center of the alert. - .close has been renamed to .btn-close. - × is no longer required for close buttons. Tests: - Visually verify all the changes by triggering them with code changes. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
39 lines
1.0 KiB
HTML
39 lines
1.0 KiB
HTML
{% extends 'help_base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "Status Log" %}</h2>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
These are the last {{ num_lines }} lines of the status log for this web
|
|
interface. 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 status log to the bug report.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<div class="alert alert-warning d-flex align-items-center">
|
|
<div class="me-2">
|
|
<span class="fa fa-exclamation-triangle" aria-hidden="true"></span>
|
|
<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>
|
|
|
|
<p>
|
|
<pre class="status-log">{{ data }}</pre>
|
|
</p>
|
|
|
|
{% endblock %}
|