{% extends 'keuangan/base.html' %} {% load static %} {% block title %}{{ notifikasi.judul }} - Sistem Keuangan HMI{% endblock %} {% block page_title %}Detail Notifikasi{% endblock %} {% block content %}
Kembali ke Notifikasi
{% if not notifikasi.is_read %} {% endif %}
{% if notifikasi.tipe == 'transaksi_baru' %}
{% elif notifikasi.tipe == 'donasi_baru' %}
{% elif notifikasi.tipe == 'iuran_telat' %}
{% elif notifikasi.tipe == 'laporan_ready' %}
{% elif notifikasi.tipe == 'saldo_rendah' %}
{% elif notifikasi.tipe == 'pengingat' %}
{% else %}
{% endif %}

{{ notifikasi.judul }}

{% if notifikasi.prioritas == 'urgent' %} Urgent {% elif notifikasi.prioritas == 'tinggi' %} Tinggi {% elif notifikasi.prioritas == 'sedang' %} Sedang {% else %} Rendah {% endif %} {{ notifikasi.get_tipe_display }} {% if not notifikasi.is_read %} Belum Dibaca {% else %} Sudah Dibaca {% endif %}
Dibuat: {{ notifikasi.created_at|date:"d M Y H:i" }} {% if notifikasi.read_at %} Dibaca: {{ notifikasi.read_at|date:"d M Y H:i" }} {% endif %}

Pesan

{{ notifikasi.pesan }}
{% if notifikasi.action_url and notifikasi.action_text %} {% endif %}

Detail Notifikasi

ID Notifikasi
#{{ notifikasi.id }}
Tipe
{{ notifikasi.get_tipe_display }}
Prioritas
{{ notifikasi.get_prioritas_display }}
Status
{% if notifikasi.is_read %} Sudah Dibaca {% else %} Belum Dibaca {% endif %}
Tanggal Dibuat
{{ notifikasi.created_at|date:"d M Y H:i" }}
{% if notifikasi.read_at %}
Tanggal Dibaca
{{ notifikasi.read_at|date:"d M Y H:i" }}
{% endif %}

Aksi Cepat

{% if not notifikasi.is_read %} {% endif %} Pengaturan Notifikasi
{% endblock %} {% block extra_js %} {% endblock %}