mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
16 lines
409 B
HTML
16 lines
409 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>
|
|
{% endblock %}
|