{% load static %} {% load i18n %}
{% for service in services %}
{% if service.picture %}
{% endif %}
{{ service.name }}
{% if service.get_subservices %}
{% for sub_serv in service.get_subservices %}
{% if sub_serv.picture %}
{% endif %}
{{ sub_serv.name }}
{% endfor %}
{% endif %}
{% endfor %}