{% extends "base.html" %} {% block content %}

All Notes

{{ notes|length }} notes available

Clear
{% if notes %}
{% for note in notes %}

{{ note.title }}

{{ note.subject.name }} {{ note.note_type.name }} {% if note.original_link %}Link{% else %}File{% endif %}
{% if note.description %}

{{ note.description }}

{% endif %}
{{ note.user.name }} Avatar {{ note.user.name }} {{ note.created_at.strftime('%b %d, %Y') }}
{% endfor %}
{% else %}

No notes found

{% endif %}
{% endblock %}