check_sys/reports/templates/index.html.j2
2023-09-10 18:08:48 +02:00

40 lines
1.2 KiB
Django/Jinja

<!doctype html>
<html lang="en" data-bs-theme="auto">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Hugo 0.112.5">
<title>{{ data['title'] }}</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.3/examples/jumbotron/">
<link href="./templates/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<main>
<div class="container py-4">
<header class="pb-3 mb-4 border-bottom">
<span class="d-flex align-items-center text-body-emphasis text-decoration-none; fs-4">Report</span>
</header>
<div class="p-5 mb-4 bg-body-tertiary rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">Report</h1>
<p class="col-md-8 fs-4">
Audit of the system {{ data['hostname'] }} ({{ data['release'] }}).<br />
Kernel version: {{ data['kernel'] }}<br />
</p>
</div>
</div>
{% for plugin in data['plugins'] %}
{% include plugin %}
<div style="margin-bottom:15pt"></div>
{% endfor %}
{% include 'footer.html.j2' %}