{% extends 'layouts/base.html' %} {% load static i18n itens_extras %} {% block extrastyle %} {% endblock %} {% block content %}
{{ total_notifications|default:0 }}
{% trans "Total" %}
{{ unread_count|default:0 }}
{% trans "Não Lidas" %}
{{ notifications_with_rewards|default:0 }}
{% trans "Com Prêmios" %}
{% if private_notifications %} {% for notification in private_notifications %}

{{ notification.get_notification_type_display }}

{{ notification.created_at|date:"d/m/Y H:i" }} {% if not notification.viewed %} {% trans "Nova" %} {% endif %}

{{ notification.message|truncatewords:20 }}

{% if notification.rewards.exists %}
{% for reward in notification.rewards.all %} {% if reward.fichas_amount and reward.fichas_amount > 0 %}
{{ reward.fichas_amount }}
{% else %}
{{ reward.item_name }} {% if reward.item_amount > 1 %} x{{ reward.item_amount }} {% endif %}
{% endif %} {% endfor %} {% if not notification.rewards_claimed %} Prêmios Disponíveis {% else %} Prêmios Reclamados {% endif %}
{% endif %}
{% endfor %} {% if private_notifications.has_other_pages %}
{% with page_param='private_page' current_page=private_current_page total_pages=private_total_pages has_previous=private_has_previous has_next=private_has_next previous_page_number=private_previous_page_number next_page_number=private_next_page_number page_range=private_page_range show_first=private_show_first show_last=private_show_last show_first_ellipsis=private_show_first_ellipsis show_last_ellipsis=private_show_last_ellipsis query_params=request.GET.urlencode %} {% include 'includes/pagination_custom.html' %} {% endwith %}
{% endif %} {% else %}

{% trans "Nenhuma notificação privada" %}

{% trans "Você não tem notificações privadas no momento" %}

{% endif %}
{% if public_notifications %} {% for notification in public_notifications %}

{{ notification.get_notification_type_display }}

{{ notification.created_at|date:"d/m/Y H:i" }} {% if not notification.viewed %} {% trans "Nova" %} {% endif %}

{{ notification.message|truncatewords:20 }}

{% if notification.rewards.exists %}
{% for reward in notification.rewards.all %} {% if reward.fichas_amount and reward.fichas_amount > 0 %}
{{ reward.fichas_amount }}
{% else %}
{{ reward.item_name }} {% if reward.item_amount > 1 %} x{{ reward.item_amount }} {% endif %}
{% endif %} {% endfor %} {% if not notification.rewards_claimed %} Prêmios Disponíveis {% else %} Prêmios Reclamados {% endif %}
{% endif %}
{% endfor %} {% if public_notifications.has_other_pages %}
{% with page_param='public_page' current_page=public_current_page total_pages=public_total_pages has_previous=public_has_previous has_next=public_has_next previous_page_number=public_previous_page_number next_page_number=public_next_page_number page_range=public_page_range show_first=public_show_first show_last=public_show_last show_first_ellipsis=public_show_first_ellipsis show_last_ellipsis=public_show_last_ellipsis query_params=request.GET.urlencode %} {% include 'includes/pagination_custom.html' %} {% endwith %}
{% endif %} {% else %}

{% trans "Nenhuma notificação pública" %}

{% trans "Não há notificações públicas no momento" %}

{% endif %}
{% trans "Voltar ao Dashboard" %}
{% endblock %}