2015-08-21 22:07:45 +00:00
|
|
|
{% if notifs %}
|
|
|
|
<div class="notification-history">
|
|
|
|
{% for notif in notifs[page.currentPage] %}
|
|
|
|
<a id="notif-hist-{{ notif.id }}" class="clean {% if notif.notif_read %}read{% endif %}"{% if notif.notif_link %} href="{{ notif.notif_link }}"{% endif %}>
|
|
|
|
<div class="notif-hist-icon">
|
|
|
|
{% if 'FONT:' in notif.notif_img %}
|
|
|
|
<div class="font-icon fa {{ notif.notif_img|replace({'FONT:': ''}) }} fa-4x"></div>
|
|
|
|
{% else %}
|
|
|
|
<img src="{{ notif.notif_img }}" alt="Notification" />
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="notif-hist-content">
|
|
|
|
<div class="notif-hist-inside">
|
|
|
|
<div class="notif-hist-title">
|
|
|
|
{{ notif.notif_title }}
|
|
|
|
</div>
|
|
|
|
<div class="notif-hist-text">
|
|
|
|
{{ notif.notif_text }}
|
|
|
|
</div>
|
2015-08-10 20:04:22 +00:00
|
|
|
</div>
|
2015-08-21 22:07:45 +00:00
|
|
|
<div class="notif-hist-time">
|
|
|
|
{{ notif.timestamp|date(sakura.dateFormat) }}
|
2015-08-10 20:04:22 +00:00
|
|
|
</div>
|
2015-06-19 16:12:44 +00:00
|
|
|
</div>
|
2015-08-21 22:07:45 +00:00
|
|
|
<div class="clear"></div>
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% if notifs|length > 1 %}
|
|
|
|
<div>
|
|
|
|
<div class="pagination" style="float: right;">
|
|
|
|
{% if page.currentPage > 0 %}
|
2015-08-23 22:08:36 +00:00
|
|
|
<a href="/settings/notifications/history/p{{ page.currentPage }}"><span class="fa fa-step-backward"></span></a>
|
2015-08-21 22:07:45 +00:00
|
|
|
{% endif %}
|
|
|
|
{% for id,npage in notifs %}
|
2015-08-23 22:08:36 +00:00
|
|
|
<a href="/settings/notifications/history/p{{ id + 1 }}"{% if id == page.currentPage %} class="current"{% endif %}>{{ id + 1 }}</a>
|
2015-08-21 22:07:45 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% if page.currentPage + 1 < notifs|length %}
|
2015-08-23 22:08:36 +00:00
|
|
|
<a href="/settings/notifications/history/p{{ page.currentPage + 2 }}"><span class="fa fa-step-forward"></span></a>
|
2015-08-21 22:07:45 +00:00
|
|
|
{% endif %}
|
2015-06-19 16:12:44 +00:00
|
|
|
</div>
|
2015-08-21 22:07:45 +00:00
|
|
|
<div class="clear"></div>
|
2015-08-10 20:04:22 +00:00
|
|
|
</div>
|
2015-08-21 22:07:45 +00:00
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<h1 class="stylised" style="margin: 2em auto; text-align: center;">You don't have any notifications in your history!</h1>
|
2015-08-10 20:04:22 +00:00
|
|
|
{% endif %}
|