{% extends "base.html" %} {% block title %} List of note {% endblock title %} {% block page_title %} note {% endblock page_title %} {% block content %}
{% if items %}
{% for item in items %} {% endfor %}
{{"user_id" | capitalize }} {{"title" | capitalize }} {{"content" | capitalize }} Actions
{{item.user_id | escape }} {{item.title | escape }} {{item.content | escape }} Edit
{% else %}

Nothing Here Yet

There are no records to display. Add a new record to get started! Create
{% endif %}
{% endblock content %}