{% extends "main/base.html" %} {% block body %} {% if entries_list|length %} {% for entry in p_entries_list.object_list|slice:items_per_page %} {% autoescape off %} {% ifequal entry.entry_id.is_approved 1 %} {% ifchanged entry.date.day entry.date.month entry.date.year %}
{% endifchanged %} {% ifchanged %}

{{ entry.date|date:"d F Y" }}

{% endifchanged %}

{{ entry.title }}

Yazar: {{ entry.entry_id.author_name }} {{ entry.entry_id.author_surname }} Tarih: {{ entry.date|date:"d F Y H:i" }}

{{ entry.content_html|truncatewords_html:truncate_words }}
{% endifequal %} {% endautoescape %}
{% endfor %} {% else %} Sayfa {{ p_entries_list.number }} / {{ p_entries_list.paginator.num_pages }}
{% if p_entries_list.has_previous %} Geri {% endif %} | {% for pNum in p_entries_list.paginator.page_range %} {% ifequal pNum p_entries_list.number %} {{ pNum }} {% else %} {{ pNum }} {% endifequal %} {% endfor %} | {% if p_entries_list.has_next %} İleri {% endif %}
{% endif %} {% else %}

Gösterecek veri yok!


{% endif %} {% endblock %}