add notification page
This commit is contained in:
20
templates/notifications/notifications.html
Normal file
20
templates/notifications/notifications.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user