{% capture newJurisdictions %}
{% for jurisdiction in site.data.resources[resource_].jurisdictions %}
{% assign foundRes = false %}
{% for igjur in site.data.resources[igId].jurisdictions %}
{% if igjur.name == jurisdiction.name %}
{% assign foundRes = true %}
{% break %}
{% endif %}
{% endfor %}
{% if foundRes == false %}
{% if jurisdiction.flag %}
{% elsif jurisdiction.code %}
{{jurisdiction.code}}
{% else %}
{{jurisdiction.name}}
{% endif %}
{% endif %}
{% endfor %}
{% endcapture %}
{% assign trimmedJurisdictions = newJurisdictions | strip %}
{% assign colspan = 1 %}
{% if site.data.resources[resource_].status.fmm == nil %}
{% assign colspan = colspan | plus: 1 %}
{% endif %}
{% if site.data.resources[igId].status.owner == site.data.resources[resource_].status.owner %}
{% assign colspan = colspan | plus: 1 %}
{% endif %}
{% if trimmedJurisdictions == "" %}
{% assign colspan = colspan | plus: 1 %}
{% endif %}
{% if site.data.resources[resource_].status.standards-status %}
{% if table_prefix != nil %}
{{table_prefix}}
{% endif %}
Standards status:
{{site.data.resources[resource_].status.standards-status|capitalize}}
{% if site.data.resources[resource_].status.normativeVersion %}
(from v{{site.data.resources[resource_].status.normativeVersion}})
{% endif %}
{% else %}
{{site.data.resources[resource_].status.status}}
{% if site.data.resources[resource_].date %}
as of {{site.data.resources[resource_].date | date: "%Y-%m-%d"}}
{% endif %}
{% endif %}
|
{% if site.data.resources[resource_].status.fmm %}
Maturity Level: {{site.data.resources[resource_].status.fmm}}
{% if site.data.resources[resource_].status.fmmSource %}
*
{% endif %}
|
{% endif %}
{% if site.data.resources[igId].status.owner != site.data.resources[resource_].status.owner and site.data.resources[resource_].status.owner != nil %}
Responsible:
{% if site.data.resources[resource_].status.link %}
{{site.data.resources[resource_].status.owner}}
{% else %}
{{site.data.resources[resource_].status.owner}}
{% endif %}
|
{% endif %}
{% if trimmedJurisdictions != "" %}
Realm: {{trimmedJurisdictions}}
|
{% endif %}
Computable Name: {{site.data.resources[resource_].name}} |
{% if site.data.resources[resource_].identifiers %}