{% extends 'transfers/base.html' %} {% load tz static %} {% block h1_title %} Organization Profile {% endblock %} {% block content %}

{{ object.name }}

  • Active? {% if object.is_active %}yes{% else %}no{% endif %}
  • Total Uploads {{ uploads_count }}
  • Users {{ object.org_users|length }}
  • {% if object.acquisition_type %}
  • Acquisition Type {{object.get_acquisition_type_display}}
  • {% endif %}
{% if request.user.is_manager or request.user.is_superuser %} edit organization {% endif %}

Users

{% include 'parts/user_table.html' with users=object.active_users switch='Active' %} {% include 'parts/user_table.html' with users=object.inactive_users switch='Inactive' %}
{% include 'parts/profiles_box.html' %} {% include 'parts/rights_box.html' %}

Recent Uploads

{% include 'parts/transfer_table.html' with org=object %}
{% endblock %} {% block modals %} {% include 'rights/modals/confirm_delete.html' %} {% endblock %} {% block extra_js %} {% endblock %}