{% extends "shared/base.html" %} {% block title %} Profiles {% endblock %} {% block content %} {% with msg=msg %} {% include "components/alerts.html" %} {% endwith %}

Profiles..

{% for profile in profiles %} {% endfor %}
Username First Name Last Name Actions
{{profile.user_name}} {{profile.first_name}} {{profile.last_name}} {{profile.email}} Edit Delete
Add Profile
{% endblock %}