{% extends 'admin_panel/base.html' %} {% load static %} {% load summonote_filters %} {% block page_title %}Detail Berita - {{ news.title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% csrf_token %}

Detail Berita

{{ news.title|truncatechars:80 }}

{{ news.title }}

{{ news.author.username }}
{{ news.created_at|date:"d M Y H:i" }}
{{ news.category.name }}
{{ news.get_status_display }}
{% if news.is_featured %}
Featured
{% endif %} {% if news.is_breaking %}
Breaking News
{% endif %}
{{ total_views }}
Total Views
{{ total_likes }}
Total Likes
{{ total_shares }}
Total Shares
{{ total_comments }}
Total Komentar
{% if news.featured_image %}
{{ news.title }}
{% endif %} {% if news.excerpt %}
Ringkasan
{{ news.excerpt|safe }}
{% endif %}
{{ news.content|safe }}
{% if news.tags.exists %}
Tags
{% for tag in news.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
Komentar

Total {{ comments|length }} komentar

{% for comment in comments %}
{{ comment.author_name }}
{{ comment.author_email }}
{{ comment.created_at|timesince }} yang lalu {{ comment.get_status_display }}
{{ comment.content }}
{% if comment.parent %}
Balasan untuk: {{ comment.parent.author_name }}
{% endif %}
{% if comment.status == 'pending' %} {% endif %} {% if comment.status == 'approved' %} {% endif %}
{% empty %}
Belum ada komentar

Komentar akan muncul di sini setelah ada yang berkomentar.

{% endfor %}
SEO Information
{{ news.meta_title|length|default:news.title|length }}/60 karakter
{{ news.meta_description|length|default:news.excerpt|length }}/160 karakter
{{ request.scheme }}://{{ request.get_host }}/news/
Quick Actions
Dibuat: {{ news.created_at|date:"d M Y H:i" }}
Diupdate: {{ news.updated_at|date:"d M Y H:i" }}
{% endblock %} {% block extra_js %} {% endblock %}