{% extends "base.html" %} {% block title %}System Admin{% endblock %} {% block content %}

System Administration

Manage Users
{% for user in users %} {% endfor %}
Email Company System Admin Company Admin Actions
{{ user.email }} {{ user.company.name if user.company else '-' }} {% if user.is_system_admin %}✓{% endif %} {% if user.is_company_admin %}✓{% endif %}
{% if not user.is_system_admin %} {% else %} {% endif %} {% if user.company_id and not user.is_company_admin %} {% elif user.is_company_admin %} {% endif %}
Registered Companies
{% endblock %}