{% 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.designing.project-overview') %}
{% include ../core/fieldset.html %}
{% comment ************************************************** %}
{% comment Sub-section: experiments %}
{% comment ************************************************** %}
{% set ctx = TemplateInfo(doc, fieldset='cim.2.designing.project-experiments') %}
{% include ../core/fieldset.html %}
{% comment ************************************************** %}
{% comment Sub-section: citations %}
{% comment ************************************************** %}
{% if doc.citations %}
{% set citations = load(doc.citations) %}
{% 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 %}