{% if raw %} {% extends 'layout_blank.html' %} {% else %} {% extends 'layout.html' %} {% endif %} {% block content %} {% if not raw %}

{{ dashboard.title }}

View the dashboard in an empty page without MegaQC navigation and footer here: {{ request.base_url }}/raw

{% endif %}
{% for d in dashboard.data %}
{% if d['type'] == 'plot' and 'plot_id' in d %}
Loading...
{% elif 'html_contents' in d %} {{ d['html_contents'] | safe }} {% else %} {{ d }} {% endif %}
{% endfor %}
{% if not raw %}
{% endif %} {% endblock %} {% block js %} {% endblock %}