mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 01:02:30 +02:00
23 lines
775 B
HTML
23 lines
775 B
HTML
{% extends "public/base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}View Notification{% endblock title %}
|
|
{% block page_title %}View Notification{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">View Notification</h1>
|
|
<div class="col-lg-12 container" id="example">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="panel panel-{{ notif.level }}">
|
|
<div class="panel-heading">{{ notif.timestamp }} {{ notif.title }}</div>
|
|
<div class="panel-body"><pre>{{ notif.message }}</pre></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|