Front-end notification system

Currently only creates notifications for logging events
Addresses #75
This commit is contained in:
Adarnof
2016-02-13 21:53:43 +00:00
parent 1d99ef69d1
commit 5e2c828c3b
10 changed files with 152 additions and 27 deletions

View File

@@ -47,6 +47,15 @@
<!-- /.navbar-header -->
<ul class="nav navbar-top-links navbar-right">
{% if notifications %}
<li class="nav-link active"><a href="{% url 'auth_notification_list' %}">
<span class="glyphicon glyphicon-alert"></span></a>
</li>
{% else %}
<li class="nav-link"><a href="{% url 'auth_notification_list' %}">
<span class="glyphicon glyphicon-warning-sign"></span></a>
</li>
{% endif %}
{% if user.is_authenticated %}
<li><a href="{% url 'auth_logout_user' %}">Logout</a></li>
{% else %}