{% extends "base.html" %} {% block content %}

Admin dashboard

Companies

Users

{% for u in users %}
{{ u.username }} {% if u.is_admin %}admin{% endif %}
{% if u.company %}Company: {{ u.company.name }}{% else %}No company{% endif %}
{% if not u.is_admin %}
{% endif %}
{% else %}
No users yet.
{% endfor %}
{% endblock %}