2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2022-01-24 15:22:01 +01:00
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}{{ notification.title }}{% endblock %}
|
2022-01-24 15:22:01 +01:00
|
|
|
{% block default_content %}
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1 class="h3">{{ notification.title or "" }}</h1>
|
|
|
|
<div>{{ notification.message | safe }}</div>
|
|
|
|
<form method="post"
|
|
|
|
class="float-right mt-3"
|
2024-01-03 12:35:42 +01:00
|
|
|
onsubmit="return confirm('This operation is irreversible, please confirm');">
|
2022-01-24 15:22:01 +01:00
|
|
|
<button class="btn btn-outline-danger">Delete</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|