{% extends "base.html" %} {% from "macros/tag-links.html" import taxonomy_labels with context %} {% 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_labels %}
{{ taxonomy_labels(entry.topic_labels) }}
{% endif %} Read entry →
{% endfor %}
{% endblock %}