{% comment ************************************************** %}
{% comment Sub-section: overview %}
{% comment ************************************************** %}
{% set ctx = TemplateInfo(doc, fieldset='cim.1.software.modelcomponent-details') %}
{% include ../core/fieldset.html %}
{% comment ************************************************** %}
{% comment Sub-section: license %}
{% comment ************************************************** %}
{% if doc.license %}
{% set ctx = TemplateInfo(doc.license, fieldset='cim.1.shared.license') %}
{% include ../core/fieldset.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: timing %}
{% comment ************************************************** %}
{% if doc.timing %}
{% set ctx = TemplateInfo(doc.timing, fieldset='cim.1.software.timing') %}
{% include ../core/fieldset.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: scientific properties %}
{% comment ************************************************** %}
{% if doc.ext.displayable_scientific_properties %}
Scientific Properties ({{ len(doc.ext.displayable_scientific_properties) }})
{% set ctx = TemplateInfo(doc, fieldset_type="property", fieldset=("cim.1.software.modelcomponent-properties", doc.ext.displayable_scientific_properties)) %}
{% include ../core/fieldset.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: citations %}
{% comment ************************************************** %}
{% set citations = doc.citations %}
{% set header = 3 %}
{% include shared_citation.html %}
{% comment ************************************************** %}
{% comment Sub-section: Responsible parties %}
{% comment ************************************************** %}
{% set contacts = doc.responsible_parties %}
{% set header = 3 %}
{% include shared_responsible_party.html %}