{% load staticfiles %}
{% for plot in datasets %}
{% if user_device_type == "mobile" %}
{{ plot.name }} {{ plot.unit }}
{% elif user_device_type == "desktop" %}
{% endif %}
{% if user_device_type == "mobile" %}
{% elif user_device_type == "desktop" %}
{% if plot.show_total_panel == True %}
{% if lang == 'hr'%} Total {% else %} Total {% endif %} {{ plot.unit }}
{% for channel in plot.label_data %}
{{ channel }} Total
{% endfor %}
{% endif %} {% endif %}
{% endfor %}