{% import "bootstrap/utils.html" as utils %} {% extends "base.html" %} {% block title %}Notes{% endblock %} {% block body %}

{{ utils.flashed_messages() }}

My Current Notes

{% if user.career.name %}

{{user.career.name}} : {{ user.role.name }}

{% else %}

{{ user.username}}

{% endif %} {% if notes %}
{% for note in notes %} {% endfor %}
Title Body Edit Delete
{{ note.title }} {{ note.body }} Edit Delete
{% else %}

No notes have been added.


{% endif %} Add Role
{% endblock %}