{% extends "layout_bs4.html" %} {% block title %} {{ super() }} - Institutes {% endblock %} {% block top_nav %} {{ super() }}
  • Institutes Overview
  • {% endblock %} {% block content_main %}
    {% for institute in institutes %}
    {{ institute.display_name }}
    {% if current_user.is_admin %}
    ({{ institute.internal_id }})
    {% endif %}
    • Coverage Cutoff {{ institute.coverage_cutoff }}
    • Sanger Recipients {{ institute.sanger_recipients|join(', ') or '-' }}
    • Frequency Cutoff {{ institute.frequency_cutoff }}
    • Number of Cases {{ institute.case_count }}
    {% endfor %}
    {% endblock %}