20 lines
490 B
HTML
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 %} |