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

Organizations

{% if "facstaff" in roles or "admin" in roles %}
{% endif %}
{% if not member_orgs %}

You are not currently a member of any organizations.

{% else %}

You are currently a member of these organizations:

{% endif %}
{% if member_orgs %}
{% for org in member_orgs %} {% set is_org_admin = org in admin_orgs %} {% include "organization_card.html" %} {% endfor %}
{% endif %} {% include "delete_organization_modal.html" %} {% assets "shrunk_organizations" %} {% endassets %} {% endblock %}