{% load i18n static %}

{{ slide.title }}

{% if slide.subtitle %}

{{ slide.subtitle }}

{% endif %}
{% for metric in slide.content.metrics %}
{% if metric.icon %}
{% endif %}
{{ metric.label }}
{{ metric.value }}
{% if metric.change %}
{% if metric.change_direction == 'up' %}▲{% elif metric.change_direction == 'down' %}▼{% endif %} {{ metric.change }}
{% endif %} {% if metric.description %}
{{ metric.description }}
{% endif %}
{% endfor %}