{% comment ************************************************** %} {% comment Breadcrumb %} {% comment ************************************************** %}

{% for pc in c.ext.ancestors[1:] %} {{ pc.ext.short_display_name }} > {% end %} {{ c.ext.short_display_name }}

{% comment ************************************************** %} {% comment Sub-section: overview %} {% comment ************************************************** %} {% if c.description and len(c.description) %}

Overview

{{ c.description }}

{% end %} {% comment ************************************************** %} {% comment Sub-section: scientific properties %} {% comment ************************************************** %} {% if c.ext.displayable_scientific_properties %}

Scientific Properties ({{ len(c.ext.displayable_scientific_properties) }})

{% for p in c.ext.displayable_scientific_properties %} {% for v in sorted(p.values) %} {% end %} {% end %}
{{ " > ".join(p.ext.display_name.split(" > ")[1:]) }}: {{v}}
{% end %} {% comment ************************************************** %} {% comment Sub-section: quality control properties %} {% comment ************************************************** %} {% if c.ext.displayable_qc_properties %}

Component Documentation Quality Control

{% for p in c.ext.displayable_qc_properties %} {% for v in sorted(p.values) %} {% end %} {% end %}
{{ " > ".join(p.ext.display_name.split(" > ")[1:]) }}: {% if p.ext.short_display_name == "Verification Status" %} {% if v == "0" %} Awaiting review {% elif v == "1" %} Under review {% elif v == "2" %} Accepted {% end %} {% else %} {{v}} {% end %}
{% end %} {% comment ************************************************** %} {% comment Sub-section: citations %} {% comment ************************************************** %} {% set previousCtx = ctx %} {% set citations = c.citations %} {% set header = 4 %} {% include shared_citation.html %} {% set ctx = previousCtx %} {% comment **************** %} {% comment ... contacts %} {% comment **************** %} {% set contacts = [rp for rp in c.responsible_parties if rp.role.lower() not in ['funder', 'centre']] %} {% set previousCtx = ctx %} {% set header = 4 %} {% include shared_responsible_party.html %} {% set ctx = previousCtx %}