{% extends 'admin_panel/base.html' %} {% load static %} {% load currency_filters %} {% block page_title %}Detail Dokumen - {{ document.title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Kembali ke Daftar

{{ document.title }}

{{ document.category.name }}
{{ document.document_year }}
{% if document.document_number %}
{{ document.document_number }}
{% endif %}
{{ document.view_count }} views
{{ document.download_count }} downloads
{% if document.status == 'published' %} Dipublikasikan {% elif document.status == 'draft' %} Draft {% elif document.status == 'review' %} Review {% else %} Diarsipkan {% endif %}
Deskripsi
{{ document.description|linebreaksbr }}
{% if document.summary %}
Ringkasan
{{ document.summary }}
{% endif %}
File
{% if document.file %} Preview Download {{ document.file.name|slice:"-10:" }} {{ document.file.size|filesizeformat }} {% else %} File tidak tersedia {% endif %}
{% if document.tags %}
Tags
{% for tag in document.get_tags_list %} {{ tag }} {% endfor %}
{% endif %}
Status Publikasi
{% if document.is_public %} Dipublikasikan ke Website {% else %} Tidak Dipublikasikan {% endif %} {% if document.is_featured %} Unggulan {% endif %}
Diunggah Oleh
{% if document.uploaded_by %} {{ document.uploaded_by.get_full_name|default:document.uploaded_by.username }} {% else %} - {% endif %}
Waktu
Dibuat: {{ document.created_at|date:"d F Y, H:i" }} WIB
Terakhir diubah: {{ document.updated_at|date:"d F Y, H:i" }} WIB
Komentar ({{ comments.count }})
{% if comments %} {% for comment in comments %}
{{ comment.name }} {{ comment.email }}
{{ comment.created_at|date:"d M Y H:i" }} {% if comment.is_approved %} Disetujui {% else %} Pending {% endif %}

{{ comment.comment }}

{% endfor %} {% else %}

Belum ada komentar

{% endif %}
{% if document.file %} Preview Dokumen {% endif %} Edit Dokumen {% if document.file %} Download File {% endif %} Kembali
{% endblock %} {% block extra_js %} {% endblock %}