mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
28 lines
830 B
HTML
28 lines
830 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block status %}
|
|
<a class="btn btn-default" role="button" href="{% url 'security:report' %}"
|
|
title="{% trans 'Show security report' %}">
|
|
<span class="fa fa-line-chart" aria-hidden="true"></span>
|
|
{% trans "Show security report" %}
|
|
</a>
|
|
|
|
{% if is_backports_enabled %}
|
|
<h3>{% trans "Security Notice" %}</h3>
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Backports are enabled. Please note that packages from the backports
|
|
repository do not have security support from Debian. However, they are
|
|
maintained on a best-effort basis by contributors in Debian and
|
|
FreedomBox community.
|
|
{% endblocktrans %}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|