{% extends "base.html" %} {% block body %} {% set project = this.parent %}

{{ project.title }} · Development log

{{ this.title }}

{{ this.summary }}

Development notes{{ this.children.count() }} entries
{% for entry in this.children.order_by('-date', '-source_commit_time') %}

{{ entry.title }}

{{ entry.summary }}

{% if entry.topic_tags %}
{% for tag in entry.topic_tags %}{{ tag }}{% endfor %}
{% endif %} Read entry →
{% endfor %}
{% endblock %}