{% extends "layout.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 }}
    {% endfor %} {% endblock %}