{% extends 'userena/base_userena.html' %} {% load i18n %} {% load pagination_tags %} {% load txcommontags %} {% block title %}{{ block.super }} | {% trans "Notifications" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "Notifications" %}{% endblock %} {% block content_title %}

{% trans "Notifications" %}

{% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% autopaginate notices %}

{% trans "Received Notifications" %}

{% if notices %} {% regroup notices by added.date as notices %} {% for date in notices %} {% for notice in date.list %} {% if notice.is_unseen %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% trans "Description" %} {% trans "Time" %}

{{ date.grouper }}

{{ notice.message|safe }} {{ notice.added|timesince }}
{{ notice.message|safe }} {{ notice.added|timesince }}

{% trans "Mark all unseen notices seen" %}

{% paginate %} {% else %}

{% trans "No notices." %}

{% endif %}

{% trans "Notification settings" %}

{% trans "Change your notification settings" %}

{% with user.email as user_email %} {% if user_email %}

{% blocktrans %}You can receive notifications whenever an event occurs in Transifex. Check the notifications available for you in the list below and choose which events you would like to be notified by email.{% endblocktrans %}

{% trans "Primary email" %}: {{ user_email }} {% url email_validation as email_validation_url %} {% if email_validation_url %}
({% trans "change under" %} {% trans "Account" %}) {% endif %} {% else %}

{% trans "Note" %}: {% trans "You do not have a verified email address to which notices can be sent. You can add one by going to" %} {% trans "Account" %}.

{% endif %} {% endwith %}
{% csrf_token %} {% for header in notice_settings.column_headers %} {% endfor %} {% for row in notice_settings.rows|notice_type_user_filter %} {% for cell in row.cells %} {% endfor %} {% endfor %}
{% trans "Notification Type" %}{{ header }}
{% trans row.notice_type.display %} {% trans row.notice_type.description %}

{% endblock %}