File: security.html

package info (click to toggle)
freedombox 26.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,092 kB
  • sloc: python: 48,542; javascript: 1,730; xml: 481; makefile: 290; sh: 137; php: 32
file content (37 lines) | stat: -rw-r--r-- 1,265 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}

{% load bootstrap %}
{% load i18n %}

{% block status %}
  <div class="btn-toolbar">
    <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>
  </div>

  {% if is_backports_requested %}
    <h3>{% trans "Frequent Feature Updates" %}</h3>
    <p>
      {% blocktrans trimmed %}
        Frequent feature updates are activated.
      {% endblocktrans %}
    </p>
    <p>
      {% blocktrans trimmed %}
        Frequent feature updates allow the {{box_name}} Service, plus a very
        limited set of software, to receive new features more frequently (from
        the backports repository). This results in receiving some new features
        within weeks, instead of only once every 2 years or so. Note that
        software with frequent feature updates does not have support from the
        Debian Security Team. Instead, they are maintained by contributors to
        Debian and the {{box_name}} community.
      {% endblocktrans %}
    </p>
  {% endif %}
{% endblock %}