#10 AI bira controle,dodate je dummy payment page
This commit is contained in:
19
backend/core/templates/document_detail.html
Normal file
19
backend/core/templates/document_detail.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% 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 %}
|
||||
@@ -1,11 +1,14 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Payment</h2>
|
||||
<p>Click the button below to pay and access your document.</p>
|
||||
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<button type="submit">Pay</button>
|
||||
</form>
|
||||
<div class="out-risk-management">
|
||||
<div class="risk-management">
|
||||
<h2>Payment</h2>
|
||||
<p>Click the button below to pay and access your document.</p>
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<button class="btn-bl" type="submit">Pay</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user