{% extends "layouts/base.html" %} {% load static i18n itens_extras %} {% block title %}{% trans "Detalhes da Notificação" %} - {% trans "Gerenciador" %}{% endblock %} {% block extrastyle %} {% endblock %} {% block content %}

{% trans "Detalhes da Notificação" %} #{{ notification.id }}

{% trans "Voltar" %}
{% csrf_token %}
{% trans "Informações" %}
{% if notification.link %} {% endif %} {% if notification.rewards.exists %} {% endif %}
{% trans "Tipo" %} {{ notification.get_notification_type_display }}
{% trans "Usuário" %} {% if notification.user %} {{ notification.user.username }} (ID: {{ notification.user.id }}) {% else %} {% trans "Pública" %} {% endif %}
{% trans "Mensagem" %} {{ notification.message }}
{% trans "Link" %} {{ notification.link }}
{% trans "Status" %} {% if notification.viewed %} {% trans "Visualizada" %} {% else %} {% trans "Não Visualizada" %} {% endif %} {% if notification.rewards_claimed %} {% trans "Prêmios Reclamados" %} {% endif %}
{% trans "Expiração dos Prêmios" %} {% if notification.rewards_expires_at %} {% if notification.rewards_expired %} {% trans "Expirado em" %} {{ notification.rewards_expires_at|date:"d/m/Y H:i" }} {% else %} {% trans "Válido até" %} {{ notification.rewards_expires_at|date:"d/m/Y H:i" }} {% endif %} {% else %} {% trans "Sem expiração" %} {% endif %}
{% trans "Criada em" %} {{ notification.created_at|date:"d/m/Y H:i:s" }}
{% if notification.rewards.exists %}
{% trans "Prêmios" %} ({{ notification.rewards.count }})
{% for reward in notification.rewards.all %}
{% if reward.fichas_amount and reward.fichas_amount > 0 %}
{{ reward.fichas_amount }} Fichas
{% trans "Prêmio em fichas" %}
{% else %} {{ reward.item_name }}
{{ reward.item_name }}
ID: {{ reward.item_id }} {% if reward.item_enchant > 0 %} • +{{ reward.item_enchant }} {% endif %} • x{{ reward.item_amount }}
{% endif %}
{% endfor %}
{% endif %}
{% trans "Estatísticas" %}
{% trans "Total de Prêmios" %}
{{ notification.rewards.count|default:0 }}
{% trans "Status de Visualização" %}
{% if notification.viewed %} {% trans "Visualizada" %} {% else %} {% trans "Pendente" %} {% endif %}
{% if notification.rewards.exists %}
{% trans "Status dos Prêmios" %}
{% if notification.rewards_claimed %} {% trans "Reclamados" %} {% elif notification.rewards_expired %} {% trans "Expirados" %} {% else %} {% trans "Pendentes" %} {% endif %}
{% if notification.rewards_expires_at %}
{% trans "Expiração" %}
{% if notification.rewards_expired %} {% trans "Expirado" %}
{{ notification.rewards_expires_at|date:"d/m/Y H:i" }} {% else %} {{ notification.rewards_expires_at|date:"d/m/Y H:i" }} {% endif %}
{% endif %} {% endif %}
{% endblock %}