{% extends 'admin/base.html' %} {% load static %} {% block title %}Analytics Blog - {{ post.judul }}{% endblock %} {% block page_title %}Analytics Blog{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Analytics Blog

{{ post.judul }}

{{ total_views }}
Total Views
+{{ views_growth }}% dari bulan lalu
{{ total_likes }}
Total Likes
+{{ likes_growth }}% dari bulan lalu
{{ total_bookmarks }}
Total Bookmarks
+{{ bookmarks_growth }}% dari bulan lalu
{{ average_rating|floatformat:1 }}
Average Rating
dari {{ total_ratings }} rating

Views Over Time

Engagement Metrics

Recent Views

{% for view in recent_views %} {% empty %} {% endfor %}
User IP Address Date Duration
{% if view.user %} {{ view.user.username|first|upper }} {% else %} A {% endif %}
{% if view.user %} {{ view.user.get_full_name|default:view.user.username }} {% else %} Anonymous {% endif %}
{{ view.ip_address }} {{ view.created_at|date:"d M Y H:i" }} {% if view.duration %} {{ view.duration }}s {% else %} - {% endif %}
Belum ada data views

Recent Likes

{% for like in recent_likes %} {% empty %} {% endfor %}
User Date Action
{{ like.user.username|first|upper }}
{{ like.user.get_full_name|default:like.user.username }}
{{ like.created_at|date:"d M Y H:i" }} Liked
Belum ada data likes

Recent Ratings

{% for rating in recent_ratings %} {% empty %} {% endfor %}
User Rating Date
{{ rating.user.username|first|upper }}
{{ rating.user.get_full_name|default:rating.user.username }}
{% for i in "12345" %} {% endfor %} {{ rating.rating }}/5
{{ rating.created_at|date:"d M Y H:i" }}
Belum ada data ratings

Recent Comments

{% for comment in recent_comments %} {% empty %} {% endfor %}
User Comment Date Status
{{ comment.nama|first|upper }}
{{ comment.nama }}
{{ comment.email }}
{{ comment.konten }} {{ comment.created_at|date:"d M Y H:i" }} {% if comment.is_approved %} Approved {% else %} Pending {% endif %}
Belum ada data comments
{% endblock %} {% block extra_js %} {% endblock %}