{% extends "base.html" %} {% set active_page = "dashboard" %} {% block title %} Dashboard {% endblock %} {% block divs %}
{% if num_assets_without_location > 0 %}
Assets with no location: {{ num_assets_without_location }}
{% endif %} {% for asset_group_name in asset_groups if (asset_groups[asset_group_name].count > 0 or group_by_accounts) %} {# On demo, show all non-empty groups, otherwise show all groups that are non-empty for the current user #} {% endfor %} {% if not group_by_accounts %} {% for asset_group_name in asset_groups if asset_groups[asset_group_name].count > 0 %} {% endfor %} {% endif %} {% for asset_group_name in asset_groups if asset_groups[asset_group_name].count > 0 or group_by_accounts %} {% endfor %}
{{ asset_group_name | capitalize }}
{% if user_has_admin_reader_rights %} {{ FLEXMEASURES_PLATFORM_NAME }} total: {% else %} My accessible assets: {% endif %} {{ asset_groups[asset_group_name].count }}
{% if user_has_admin_reader_rights or user_is_consultant %}
Group by account:
{% endif %}
{% endblock %}