{% 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 "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" %} | |
| {% 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" }} |