{% extends "main.html" %}
{% load karaage_tags %}
{% load render_table from django_tables2 %}
{% block title %}Institute{% endblock %}
{% block breadcrumbs %}
Institute Details
{{ institute }}
Project Prefix: | {{ institute.project_prefix }} |
Active: |
{% if not institute.is_active %}
Deleted
{% else %}
Yes
{% endif %}
|
Delegate(s): | {% for delegate in institute.delegates.all %}{{ delegate }}, {% endfor %} |
{% if is_admin %}
Group: | {{ institute.group }} |
{% endif %}
{% if institute.saml_entityid %}
AAF entity ID: | {{ institute.saml_entityid }} |
{% endif %}
{% if institute.saml_scoped_affiliation %}
AAF scoped affiliation: | {{ institute.saml_scoped_affiliation }} |
{% endif %}
{% is_for_each_app_include_empty "project_detail_tools.html" as is_empty %}
{% if is_admin or not is_empty %}
{% endif %}
Projects
{% render_table project_list %}
People
{% render_table person_list %}
{% for_each_app_include "institute_detail_extra.html" %}
{% if is_admin %}
Comments
{% comments institute %}
{% if is_admin %}
{% endif %}
{% endif %}
{% endblock %}
{% block object-tools %}
{% endblock %}