{% if item.disaggregation_description or item.indicatordisaggregationdefinition_set.exists %}
See more
{% endif %}
{% if item.outcome_areas.all.exists %}
Outcome Areas
{% for outcome in item.outcome_areas.all %}
{% if outcome.id in viewable_ids %}
{% include "aristotle_mdr/helpers/inlineDetails.html" with item=outcome showType=False skip_can_view=True %}
{% endif %}
{% endfor %}
{% endif %}
{% if item.quality_statement %}
Quality Statement
{% include "aristotle_mdr/helpers/inlineDetails.html" with item=item.quality_statement showType=False skip_can_view=True %}
{% endif %}
{% if item.dimensions.exists %}
Dimensions
{% for dimension in item.dimensions.all %}
{% if dimension.framework.id in viewable_ids %}
{% include "comet/helpers/dimension_link.html" with item=dimension showType=False skip_can_view=True %}
{% endif %}
{% endfor %}
{% endif %}
{% if item.rationale %}
Rationale
{{ item.rationale | bleach }}
{% endif %}
Calculation rules
{% if item.computation or item.computation_description %}
Computation Rule
{% if item.computation %}
Computation
{{ item.computation | bleach }}
{% endif %}
{% if item.computation_description %}
Description
{{ item.computation_description | bleach }}
{% endif %}
{% endif %}
{% if item.numerator_description or item.indicatornumeratordefinition_set.exists %}
Numerators
{{ item.numerator_description | bleach }}
{% include "comet/helpers/indicator_component_item.html" with queryset=item.indicatornumeratordefinition_set.all %}
{% endif %}
{% if item.denominator_description or item.indicatordenominatordefinition_set.exists %}
Denominators
{{ item.denominator_description | bleach }}
{% include "comet/helpers/indicator_component_item.html" with queryset=item.indicatordenominatordefinition_set.all %}
{% endif %}
{% if item.disaggregation_description or item.indicatordisaggregationdefinition_set.exists %}
Disaggregation
{{ item.disaggregation_description|bleach }}
{% include "comet/helpers/indicator_component_item.html" with queryset=item.indicatordisaggregationdefinition_set.all %}