{% extends "../core/document.html" %}
{% comment ***************** %}
{% comment Emit content %}
{% comment ***************** %}
{% block doc-content %}
{% comment ************************************************** %}
{% comment Sub-section: overview %}
{% comment ************************************************** %}
{% set ctx = TemplateInfo(doc, fieldset='cim.2.science.model-overview') %}
{% include ../core/fieldset.html %}
{% comment ************************************************** %}
{% comment Sub-section: key-properties %}
{% comment ************************************************** %}
{% if doc.key_properties %}
{% set topic = doc.key_properties %}
{% set topic_prefix = 'Top Level' %}
{% set header = 3 %}
{% include science_topic.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: activity-properties %}
{% comment ************************************************** %}
{% for topic in doc.activity_properties %}
{% set topic_prefix = 'Activity' %}
{% set header = 3 %}
{% include science_topic.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: realms %}
{% comment ************************************************** %}
{% for realm in doc.realms %}
{% set header = 3 %}
{% include science_realm.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: citations %}
{% comment ************************************************** %}
{% set _citations = collections.OrderedDict() %}
{% for c in load(doc.citations) %}
{% set _citations[c.meta.id] = c %}
{% end %}
{% if _citations.values() %}
{% set citations = _citations.values() %}
{% set header = 3 %}
{% include shared_citation.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: responsible_parties %}
{% comment ************************************************** %}
{% if doc.responsible_parties %}
{% set responsible_parties = doc.responsible_parties %}
{% set header = 3 %}
{% include shared_responsible_parties.html %}
{% end %}
{% end %}