{% load cache i18n dashboard_tags %} {% if services %} {% cache 60 my_services user.permissions_hash %}

{% trans "My services" %}

{% for service in services %} {% for service_env in service.serviceenvironment_set.all %} {% endfor %} {% endfor %}
{% trans "Service" %} {% trans "Environment" %} {% trans "Assets count" %}
{{ service }}
{{ service_env.environment }} ({{ service_env.baseobject_set.count }}) {% regroup service_env.baseobject_set.all by content_type_id as content_types %} {% for type in content_types %}
  • {% get_objects_summary service_env type.grouper type.list %}
{% endfor %}
{% endcache %} {% endif %}