{% extends "django_prometric/components/card.html" %} {% load i18n %} {% block body %} {% if audience.browsers or audience.os or audience.devices %} {% if audience.devices %}
{% translate "Devices" %}
{% include "django_prometric/components/_bars.html" with items=audience.devices %} {% endif %} {% if audience.browsers %}
{% translate "Browsers" %}
{% include "django_prometric/components/_bars.html" with items=audience.browsers %} {% endif %} {% if audience.os %}
{% translate "Operating systems" %}
{% include "django_prometric/components/_bars.html" with items=audience.os %} {% endif %} {% else %}

{% translate "No data in this period." %}

{% endif %} {% endblock %}