{{ pipeline.name }}
{% if pipeline.default_context %}
{% for k,v in pipeline.default_context.items() %}
{{k}}: {{ v }}
{% endfor %}
Source files ({{ pipeline.config.document_paths|length }})
{% for i in pipeline.config.document_paths %}
- {{i.0}}
{% endfor %}
{% endif %}
{% for node_name in pipeline.config.report_texts %}
{% if node_name in pipeline.nodes_dict and pipeline.nodes_dict[node_name].output %}
{{ node_name|title|replace('_', ' ') }}
{% markdown %}
{{pipeline.nodes_dict[node_name].result().response_obj|safe}}
{% endmarkdown %}
{% endif %}
{% endfor %}
Themes
{% set node_result = pipeline.nodes_dict['themes'].result().response_obj %}
{% for theme in node_result.themes %}
{{ theme.name }}
{{ theme.description }}
{% if theme.code_slugs %}
Related Codes:
{% for slug in theme.code_slugs %}
{{ slug }}
{% endfor %}
{% endif %}
{% endfor %}
{% set node_result = pipeline.nodes_dict['codes'].result().response_obj %}
Codes
{% for code in node_result.codes %}
{{ code.name }}
{{ code.slug }}
{{ code.description }}
{% if code.resolved_quotes %}
Supporting Quotes ({{ code.quotes|length }})
{% for quote in code.all_quotes %}
{{ quote }}
{% endfor %}
{% else %}
There was a problem recalling the quotes selected for this Code.
{% endif %}
{% endfor %}