17 lines
466 B
HTML
17 lines
466 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<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' %}">
|
|
</head>
|
|
<body>
|
|
{% if error %}
|
|
<p style="color: red;">{{ error }}</p>
|
|
{% endif %}
|
|
{{ rendered_html|safe }}
|
|
</body>
|
|
</html>
|