{% include 'header.html' %}
{% include 'thread-comments-panel.html' %}
{% include 'navigation.html' %}

{{ ds.name }}
{% if ds.database == source and config.role == 'editors' %} {{ 'Waitlisted' if ds.waitlist else 'Waitlist' }} {% if not ds.matched %} No match needed {% if same_name_count %} Mark all matched {% endif %} Match {% else %} {% if ds.match_type == "1" %}No match needed{% else %}Matched{% endif %} {% endif %} {% endif %} {% if ds.matched and not is_proxy and config.role == 'editors' %} {% if ds.proxy_id %}Remove match and delete proxy{% else %}Remove match{% endif %} {% endif %} {% if is_proxy and config.role == 'editors' %} Delete proxy and remove match {% endif %}

  • {{ ds.database }}
  • {{ ds.location }}
  • {{ ds.unit }}
  • {{ ds.id }}
  • {{ ds['production amount'] }}
  • {{ ds['reference product'] }}
  • {{ authors }}
  • {{ds.comment }}
  • {% if same_name_count %}
  • {{ same_name_count }}: {% for obj in same_name %}{% if obj.data.matched %} {% endif %}{{obj.location}} {% endfor %}
  • {% endif %} {% if proxy_node %}
  • {{ proxy_node }}
  • {% endif %} {% if reference_node %}
  • {{ reference_node }}
  • {% endif %} {% if match_type %}
  • {{ match_type }}
  • {% endif %}
Sample error text

Technosphere Inputs

{% if not technosphere|length %}

No technosphere exchanges

{% else %} {% for row in technosphere %} {% endfor %}
Amount
Name
Location
Unit
Matched
{{row.amount}}
{{row.input.location}}
{{row.input.unit}}
{% if row.input.matched %}{% else %}{% endif %}
{% endif %}

Biosphere Inputs

{% if not biosphere|length %}

No biosphere exchanges

{% elif biosphere|length > 50 %} {# Don't show if more than 50? #}

{{ biosphere|length }} biosphere exchanges

{% else %} {% for exc in biosphere %} {% endfor %}
Amount
Name
Categories
Unit
{{ exc.amount }}
{{ exc.input.name }}
{{ exc.input.categories|join("|") }}
{{ exc.input.unit }}
{% endif %}

Consuming processes ({{ total_consumers }})

{% if not total_consumers %}

No consuming processes

{% elif total_consumers > 50 %}

Showing 50 of {{ total_consumers }}

{% endif %} {% if total_consumers %} {# NOTE: Are we showing only first 50 records? Is it provided by server? #} {% for exc in consumers %} {% endfor %}
Amount
Name
Location
Unit
{{ exc.amount }}
{{ exc.output.location }}
{{ exc.output.unit }}
{% endif %}
{# NOTE: All reusable modules and all related stuff like css are dynamically connecting as ES6 modules, inside the code #} {# TODO: It's possible to dynamically load all required styles using `CommonHelpers.addCssStyle` method. #} {% include 'footer.html' %}