{% extends "base.html" %} {% block left %} {% for note in public_notes %}
{{ note.title }}
{{ note.created_date }}
{{ note.short_summary }}
{% endfor %} {% endblock %} {% block content %} {% for note in notes %}
{{ note.title }}
{{ note.modified_date }}
{{ note.long_summary }}
{% endfor %} {% if notes|length == 0 %} Any note {% endif %} {% endblock %}