{% from "org_row.html" import org_row with context %} {% extends "base.html" %} {% block content %}

Organizations

{% if "facstaff" in roles or "admin" in roles %}
{% endif %}
{% for org in list_orgs %} {{ org_row(org, is_org_admin=org in admin_orgs, is_org_member=org in member_orgs) }} {% else %}

You are not currently a member of any organizations.

{% endfor %}
{% include "delete_org_modal.html" %} {{ bundle('orgs') }} {% endblock %}