mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-07 15:46:20 +01:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% extends "registered/base.html" %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}View Notification{% endblock title %}
|
|
{% block page_title %}{% trans "View Notification" %}{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">
|
|
{% trans "View Notification" %}
|
|
<div class="text-right">
|
|
<a href="{% url 'auth_notification_list' %}" class="btn btn-primary btn-lg">
|
|
<span class="glyphicon glyphicon-arrow-left"></span>
|
|
</a>
|
|
</div>
|
|
</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 %}
|