{% extends "journal/base.html" %} {% load comments %} {% block path %}{{ block.super }} » microentries » {{ object.title }} {% endblock %} {% block title %} {% if object.title %}{{ object.title }}{% else %}[Untitled Microentry]{% endif %} {% endblock %} {% block content %}
{% if object %}

dated {{ object.date }}, {% if object.author %}
written by {{ object.author.username }},{% endif %} {% if object.last_edited %}
last edited {{ object.last_edited }}.{% endif %}

{{ object.html_content|safe }}

{% else %}

This is not the entry you are looking for.

{% endif %} {% endblock %} {% block commentary %}
{% get_comment_list for object as comments %} {% include "comment_list" %}

Post a comment

{% render_comment_form for object %}
{% endblock %}