{% extends 'core/base.html' %} {% block title %}Manage Organizations | Killian{% endblock %} {% block content %}

Manage Organizations

Archive inactive clients or permanently remove organizations and their related data.

{% if perms.core.killian_org_view %}Back to Organizations{% else %}Back{% endif %} {% if perms.core.killian_org_create %}New organization{% endif %}
Archive before deleting Archiving preserves the organization's documentation and records while hiding it from normal Killian dashboards, organization lists, and searches. Permanent deletion removes the organization and cascading related records.
Archive Delete
{% for row in organization_rows %}
{{ row.org.name }} {% if row.org.short_name %}{{ row.org.short_name }}{% else %}No short name{% endif %}
{% if row.articles != None %}{{ row.articles }} KB{% endif %} {% if row.assets != None %}{{ row.assets }} assets{% endif %} {% if row.credentials != None %}{{ row.credentials }} credentials{% endif %} {% if row.members != None %}{{ row.members }} users{% endif %} {% if row.articles == None and row.assets == None and row.credentials == None and row.members == None %}Counts hidden by role permissions{% endif %}
{% if row.archived %}Archived{% else %}{{ row.org.status }}{% endif %}
{% if row.archived %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% if perms.core.killian_org_delete %} Delete {% else %} — {% endif %}
{% empty %}
No organizations are available to manage.
{% endfor %}
{% endblock %}