Files
docupulse/templates/notifications/notifications.html
2025-05-29 10:16:58 +02:00

20 lines
490 B
HTML

{% 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 %}