{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}

{{ _('Notifications') }}

{% if notifications %} {% for notification in notifications %} {% endfor %}
Notification When Mark all read
{% if not notification.read %}{% endif %} {{ notification.title }} {% if not notification.read %}{% endif %} {{ moment(notification.created_at).fromNow(refresh=True) }} Delete
{% else %}

No notifications to show.

{% endif %}
{% if len(subscribed) > 0 or len(moderates) > 0 %}

{{ _('Communities') }}

{% if len(subscribed) > 0 %}

Subscribed to

{% endif %} {% if len(moderates) > 0 %}

Moderates

{% endif %}
{% endif %} {% if upvoted %}

{{ _('Upvoted') }}

{% endif %}
{% endblock %}