{% load djinsight_tags %} {{ post.title }}

← Back to list

{{ post.title }}

Published: {{ post.created_at|date:"Y-m-d H:i" }}

{{ post.content|linebreaks }}

DjInsight Template Tags Demo

1. Track tag (injects tracking script):
{% track obj=post %} {% verbatim %}{% track obj=post %}{% endverbatim %}
2. Stats - Total views (text):
{% stats obj=post %} views
{% verbatim %}{% stats obj=post %}{% endverbatim %}
3. Stats - Today views:
{% stats obj=post period="today" %} views today
{% verbatim %}{% stats obj=post period="today" %}{% endverbatim %}
4. Stats - Week views:
{% stats obj=post period="week" %} views this week
{% verbatim %}{% stats obj=post period="week" %}{% endverbatim %}
5. Stats - Chart output:
{% stats obj=post period="week" output="chart" %}
{% verbatim %}{% stats obj=post period="week" output="chart" %}{% endverbatim %}
6. Stats - Bar chart with custom color:
{% stats obj=post period="week" output="chart" chart_type="bar" chart_color="#28a745" %}
{% verbatim %}{% stats obj=post period="week" output="chart" chart_type="bar" chart_color="#28a745" %}{% endverbatim %}
7. Format count filter:
Example: {{ 12345|format_count }}
{% verbatim %}{{ 12345|format_count }}{% endverbatim %}

Admin Panel