{% extends 'base.html' %} {% block title %}Notes with tag: {{ tag }}{% endblock %} {% load humanize %} {% block content %}
{% include 'messages.html' %}

Notes with tag: {{ tag }}

{% for note in all_notes %} {% endfor %}
Title Last Updated Edit Delete
{{ note.note_title|truncatechars:25 }} {{ note.updated_at|naturaltime }}
{% endblock %} {% block javascript %} {% endblock %}