{% extends "layout.html" %} {% block top_nav %} {{ super() }} {% endblock %} {% block content_main %}
{{ dashboard_search_form() }} {% if total_cases == 0 %}
Your search didn't return any results!
{% elif not total_cases %}
Use the form above to restrict your search
{% else %} {{ general_stats_panels() }} {{ cases_stats_panels() }} {% endif %}
{% endblock %} {% macro dashboard_search_form() %}
{{ dashboard_form.search_institute.label(class="control-label") }} {{ dashboard_form.search_institute(class="form-control") }}
{{ dashboard_form.search_type.label(class="control-label") }} {{ dashboard_form.search_type(class="form-control", id="search_type") }}
{{ dashboard_form.search(class="form-control") }}
{% endmacro %} {% macro general_stats_panels() %}

Samples


{% for group in analysis_types %} {% endfor %}

Cases


{% for group in cases %} {% endfor %}

Pedigree info


{% for topic in pedigree %} {% endfor %}
{% endmacro %} {% macro cases_stats_panels() %}
{% for topic in overview %} {% endfor %}
{% endmacro %} {% block scripts %} {{ super() }} {% endblock %}