{% extends "base.html" %} {% block head %} {% endblock %} {% block left %} {% if authenticated %} Add a note {% endif %}
{% for meta_note in notes_by_category %}
{{ meta_note.category }} ({{ meta_note.notes|length }})
{% csrf_token %}
{% for note in meta_note.notes %}
{{ note.title }}
{{ note.created_date }}
{{ note.short_summary }}
{% endfor %}
{% endfor %} {% if notes_without_category|length != 0 %}
Other ({{ notes_without_category|length }})
{% for note in notes_without_category %}
{{ note.title }}
{{ note.created_date }}
{{ note.short_summary }}
{% endfor %}
{% else %} {% if notes_by_category|length == 0 %} Any note {% endif %} {% endif %}
{% endblock %}