{% extends "hobo/base.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Security" %} {% endblock %} {% block appbar %}

{% trans 'Security' %}

{% endblock %} {% block content %}

{% trans "Settings" %}

{% trans "Advised default policy:" %} {{ default_policy }}

.

{% csrf_token %} {{ form.as_p }}

{% if reports %}

{% blocktrans with count=reports.count %}Security reports ({{ count }} reports){% endblocktrans %}

{% for report in reports %} {% endfor %}
{% trans "Last seen" %} {% trans "First seen" %} {% trans "Source" %} {% trans "Violated directive" %}
{{ report.last_seen }} {{ report.first_seen }} {% if report.inline %} Inline: {% endif %} {% with source=report.source %} {{ source }} {% endwith %} {% if report.inline %} Line: {{ report.line }} Column: {{ report.column }} {% endif %} {% if report.error %}{% endif %} {{ report.violated_directive }}
{% csrf_token %}
{% endif %}
{% endblock %}