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

{{ org.name }}

{{ org.status }}

{{ org.notes|default:'Client documentation workspace' }}

{% if overview_cards %}
{% for card in overview_cards %} {{ card.count }} {{ card.title }} {% endfor %}
{% endif %}

Quick Cards

{% if dashboard_widgets %}
{% for widget in dashboard_widgets %}

{{ widget.title }}

{{ widget.description }}

View all {% if widget.add_url %} + Add {% endif %}
{% for row in widget.rows %}
{% for field in row.fields %} {% include 'core/_quick_card_field.html' with field=field row=row %} {% endfor %}
{% empty %}
{{ widget.empty_message }}
{% endfor %}
{% endfor %}
{% else %}

No Quick Cards are selected.

{% endif %}
{% csrf_token %}

Customize Dashboard

Choose the Quick Cards you want to see and where this view should apply.

Apply this dashboard view to
Quick Cards Cards appear in the order shown below.
{% for option in dashboard_widget_options %} {% empty %}

No organization modules are available to your account.

{% endfor %}
{% if dashboard_state.has_organization_override %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}