{% extends "journal/base.html" %}
{% load comments %}
{% block path %}{{block.super}}
» microentries
{% block title %}Journal Microentries{% endblock %}
{% block content %}
{% if object_list %}
{% for item in object_list %}
{{item.date|date:"D, d/m/Y @H:i"}}:
{% if item.title %}{{item.title}}{%else%}[Untitled]{%endif%}
{{ item.html_content|truncatewords_html:256 }} {% get_comment_count for item as comment_count %} ({{ comment_count }} comments)
{% endfor %} {% else %}No entries have been entered yet!
{% endif %} {% if is_paginated %} {% if has_previous %} « previous | {% endif %} {% if has_next %} next » {% endif %} {% endif %} {% endblock %}