add notification page

This commit is contained in:
2025-05-29 10:16:58 +02:00
parent 096a70bb5d
commit 5ecb8c956c
4 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
{% extends "common/base.html" %}
{% from "components/header.html" import header %}
{% block title %}Notifications - {{ super() }}{% endblock %}
{% block content %}
{{ header(
title="Notifications",
description="View and manage your notifications",
icon="fa-bell"
) }}
<div class="container-fluid py-4">
<div class="card">
<div class="card-body">
<p class="text-muted">No notifications at this time.</p>
</div>
</div>
</div>
{% endblock %}