20 lines
526 B
HTML
20 lines
526 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Document Preview</h1>
|
|
<h2>Organization: {{ organization.name }}</h2>
|
|
<p>{{ created_at }}</p>
|
|
|
|
<h3>Identified Risks and Controls</h3>
|
|
<ul>
|
|
{% for risk, controls in risks_with_controls.items %}
|
|
<li>
|
|
<h2>{{ risk.risk_name }}:</h2>
|
|
<p>{{ controls }} </p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|