{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}Accounts{% endblock title %} {% block subtitle %}All the user accounts are listed here.{% endblock subtitle %} {% block content %} {% for account in accounts %} {% endfor %}
First Name Last Name Email Type Create Account
{{ account.first_name }} {{ account.last_name }} {{ account.email }} {{ account.is_superuser|yesno:"Manager,Developer" }}
{% endblock content %}