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

Organizations

Client spaces keep documentation, infrastructure, and credentials separated.

{% if perms.core.killian_org_create or perms.core.killian_org_manage or perms.core.killian_org_import or perms.core.killian_org_export %}
{% if perms.core.killian_org_create %} New organization {% endif %} {% if perms.core.killian_org_manage %} Manage Organizations {% endif %} {% if perms.core.killian_org_import or perms.core.killian_org_export %} Import / Export {% endif %}
{% endif %}
{% if perms.core.killian_kb_view %} {% else %} KB {% endif %}
{% for row in organization_rows %} {{ row.org.name }} {% if row.org.short_name %} {{ row.org.short_name }} {% endif %} {% if row.primary_contact %} {{ row.primary_contact.full_name }} {% else %} — {% endif %} {{ row.org.status }} {{ row.agent_count }} Agent{{ row.agent_count|pluralize }} {{ row.entry_count }} Organization Objects {% if perms.core.killian_kb_view %}{{ row.org.articles.count }} KB{% else %}—{% endif %} Created Date: {{ row.org.created_at|date:"M j, Y" }} {% empty %}

No active organizations are assigned to your account.

{% endfor %}
{% endblock %}