{% extends "../core/document.html" %}
{% comment ***************** %}
{% comment Emit content %}
{% comment ***************** %}
{% block doc-content %}
{% comment ************************************************** %}
{% comment Sub-section: overview %}
{% comment ************************************************** %}
{% set ctx = TemplateInfo(doc, fieldset='cim.1.shared.platform') %}
{% include ../core/fieldset.html %}
{% for unit_id, unit in enumerate(doc.units) %}
{% comment ************************************************** %}
{% comment Sub-section: compiler %}
{% comment ************************************************** %}
{% for compiler in unit.compilers %}
{% set ctx = TemplateInfo(compiler, fieldset='cim.1.shared.platform.unit.compiler') %}
{% include ../core/fieldset.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: machine %}
{% comment ************************************************** %}
{% set ctx = TemplateInfo(unit.machine, fieldset='cim.1.shared.platform.unit.machine') %}
{% include ../core/fieldset.html %}
{% end %}
{% comment ************************************************** %}
{% comment Sub-section: responsible parties %}
{% comment ************************************************** %}
{% set contacts = doc.contacts %}
{% set header = 3 %}
{% include shared_responsible_party.html %}
{% end %}