{% extends "base.html" %} {% set active_nav = "admin" %} {% block title %}Organizations - LSMC Atlas{% endblock %} {% block content %}
{% if filter.search or filter.org_type or filter.is_active %} Clear {% endif %}
{% if organizations %} {% for org in organizations %} {% endfor %} {% else %} {% endif %}
Name EUID Display Name Type Contact Email Status Created Actions
{{ org.name }} {{ org.euid }} {{ org.display_name or '—' }} {{ org.org_type or 'clinic' }} {{ org.contact_email or '—' }} {{ 'Active' if org.is_active else 'Inactive' }} {{ org.created_at.strftime('%Y-%m-%d') if org.created_at else '—' }} View Edit
No organizations found
{% endblock %}