This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/yuuno/settings/notifications.tpl

60 lines
2.9 KiB
Smarty
Raw Normal View History

2015-06-19 16:12:44 +00:00
{% include 'global/header.tpl' %}
<div class="content settings messages">
<div class="content-right content-column">
{% include 'elements/settingsNav.tpl' %}
</div>
<div class="content-left content-column">
<div class="head">
{{ page.title }}
</div>
<div class="settings-explanation">
This is the history of notifications that have been sent to you.
</div>
<div class="notification-history">
2015-07-31 21:18:14 +00:00
{% 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 %}>
2015-06-19 16:12:44 +00:00
<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>
</div>
2015-07-31 21:18:14 +00:00
<div class="notif-hist-time">
{{ notif.timestamp|date(sakura.date_format) }}
</div>
2015-06-19 16:12:44 +00:00
</div>
<div class="clear"></div>
2015-07-31 21:18:14 +00:00
</a>
2015-06-19 16:12:44 +00:00
{% endfor %}
</div>
2015-07-31 21:18:14 +00:00
{% if notifs|length > 1 %}
<div>
<div class="pagination" style="float: right;">
{% if page.currentPage > 0 %}
<a href="/settings/notifications/p{{ page.currentPage }}"><span class="fa fa-step-backward"></span></a>
{% endif %}
{% for id,npage in notifs %}
<a href="/settings/notifications/p{{ id + 1 }}"{% if id == page.currentPage %} class="current"{% endif %}>{{ id + 1 }}</a>
{% endfor %}
{% if page.currentPage + 1 < notifs|length %}
<a href="/settings/notifications/p{{ page.currentPage + 2 }}"><span class="fa fa-step-forward"></span></a>
{% endif %}
</div>
<div class="clear"></div>
</div>
{% endif %}
2015-06-19 16:12:44 +00:00
</div>
<div class="clear"></div>
</div>
{% include 'global/footer.tpl' %}