regluit/frontend/templates/notification/notices.html

46 lines
1.1 KiB
HTML
Raw Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'notification/base.html' %}
2016-05-11 14:41:50 +00:00
{% load i18n %}
2012-03-28 15:31:50 +00:00
{% block title %}{% trans "Notices" %}{% endblock %}
2012-03-28 15:31:50 +00:00
{% block extra_css %}
<link type="text/css" rel="stylesheet" href="/static/css/notices.css" />
{% endblock %}
{% block doccontent %}
2012-03-28 15:31:50 +00:00
<h2>Notices</h2>
2015-04-28 03:24:02 +00:00
<a href="{% url 'notification_notice_settings' %}">
2012-03-28 15:31:50 +00:00
<div class="notices_menu">
{% trans "Change Settings" %}
</div>
</a>
{% if unseen_count > 0 %}
<div class="notices_menu">
2015-04-28 03:24:02 +00:00
<a href="{% url 'notification_mark_all_seen' %}">{% trans "Mark all notices seen" %}</a>
</div>
{% endif %}
<div class="comments"></div>
2012-03-29 20:26:06 +00:00
<br />
{% if unseen_count > 0 %}
{% for notice in notices %}
{% if notice.unseen %}
{% comment %}
Note: do not call is_unseen because it will mark the notification as seen,
and we're leaving that up to the user.
{% endcomment %}
<div class="notice">
{{ notice.message|safe }}
</div>
{% endif %}
{% endfor %}
{% else %}
<p>{% trans "You have no unseen notices." %}</p>
{% endif %}
{% endblock %}