{% extends "base.html" %} {% load frontendadmin_tags %} {% load comments %} {% block content %} {% comment %} ------------------------------------------------------ Add link for the entrys, queryset name is `object_list` here. You can provide a custom label with the second argument. ------------------------------------------------------ {% endcomment %} {% frontendadmin_add object_list "Add a new weblog entry" %} {% for entry in object_list %}
{{ forloop.counter }}

{{ entry.title }}

{{ entry.content|urlize|linebreaks }} {% get_comment_count for entry as comment_count %}

Read full entry and comments ({{ comment_count }})

{% comment %} ------------------------------------------------------ Change and delete links for every entry object. ------------------------------------------------------ {% endcomment %} {% frontendadmin_change entry %} {% frontendadmin_delete entry %}
{% endfor %} {% endblock %}