2025-03-27 23:57:31 +01:00
|
|
|
{% load static %}
|
2025-04-18 16:29:07 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
2025-06-13 17:45:22 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Cyber Risk Assessment Report - {{document.organization.name}}</title>
|
|
|
|
|
<link rel="stylesheet" href="{% static 'css/document.css' %}">
|
2025-04-18 16:29:07 +02:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{% if error %}
|
|
|
|
|
<p style="color: red;">{{ error }}</p>
|
|
|
|
|
{% endif %}
|
2025-06-13 17:45:22 +02:00
|
|
|
{{ rendered_html|safe }}
|
2025-04-18 16:29:07 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|