2022-01-24 15:22:01 +01:00
|
|
|
{% extends 'default.html' %}
|
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ notification.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block default_content %}
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h3">
|
2022-01-24 16:45:36 +01:00
|
|
|
{{ notification.title or "" }}
|
2022-01-24 15:22:01 +01:00
|
|
|
</h1>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ notification.message | safe }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<form method="post" class="mt-3" onsubmit="return confirm('This operation is not reversible, please confirm');">
|
|
|
|
<button class="btn btn-outline-danger">Delete</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|