{%- assign indicators = site.data.quality_indicators %} {% if indicators.size > 0 %}
| Quality indicator | Description | Related pages | Relevant for tier |
|---|---|---|---|
| {{ indicator.name }} | {{ indicator.description }} | {% for page_that_mentions_indicator in pages_that_mention_indicator %} {{ page_that_mentions_indicator.title | truncate: 50 }} {% endfor %} | {% if indicator['relevant in tiers'] %} {% for tier in indicator['relevant in tiers'] %} {% if tier[1] != "not relevant" %} {% assign tier_name = tier[0] %} {% if tier_name == "Relevant for RS infrastructure" %} {% assign tier_name = "infrastructure" %} {% elsif tier_name == "Relevant for Prototype tool" %} {% assign tier_name = "prototype tool" %} {% elsif tier_name == "Relevant for Analysis Code" %} {% assign tier_name = "analysis code" %} {% endif %} {{ tier_name }} ({{ tier[1] }}) {% endif %} {% endfor %} {% endif %} |