{% extends 'app_base.html' %} {% load static %} {% load markdownify %} {% if user.is_authenticated %} {% block content_wrapper %} {% comment %}
{% endcomment %}
{% for item in list %} {% endfor %} {% for itemnc in list_nc %} {% endfor %}
{% comment %}
{% endcomment %}

Building Block Explorer

{% if list or list_nc %} {% else %} {% endif %}
{% for description in markdown_descriptions %}
{{description|markdownify }}
{% endfor %} {% for meta_data,url,url_conf,url_dupl,url_del in pipelines_markdown_url %}

Description

{{meta_data.description }}

Building blocks

  {{meta_data.building_blocks|join:" [--->] "}}

Inputs

    {% for key, value in meta_data.inputs.items %}
  • {{key}}:
      {% for k, v in value.items %}
    • {{k|capfirst}}: {{v}}
    • {% endfor %}
    {% endfor %}

Outputs

    {% for key, value in meta_data.outputs.items %}
  • {{key|capfirst}}: {{value}}
  • {% endfor %}

Example

{{ meta_data.example }}

Version

{{meta_data.version}}
Create this pipeline Configure this pipeline Duplicate this pipeline {% if 'custom' in meta_data.type %} Delete this pipeline {% endif %}
{% endfor %} {% for description,url in energy_markdown_url %}
{{description|markdownify }} {% comment %}
Run this pipeline
{% endcomment %}
{% endfor %} {% for description,url in ss_markdown_url %}
{{description|markdownify }} {% comment %}
Run this pipeline
{% endcomment %}
{% endfor %} {% for description,url in eee_markdown_url %}
{{description|markdownify }} {% comment %}
Run this pipeline
{% endcomment %}
{% endfor %}
{{data1|safe}}
{% endblock %} {% comment %} {% endcomment %} {% block extra_foot %} {% endblock %} {% endif %}