{% extends "base_user.html" %} {% block content %} {% for note in notes %}
{% if note.category != None %}
{{ note.title }} [{{ note.category.name }}]
{% else %}
{{ note.title }}
{% endif %}
{{ note.modified_date }}
{{ note.long_summary }}
{% endfor %} {% if notes|length == 0 %} Any note {% endif %} {% endblock %}