{% load i18n %}
{% trans "Choose a Service" %}
{% for category in categories %}
{{ category.name }}
{% for service in category.services.all %}
{{ service.name }} {{ service.duration }} {% trans "min" %}
{% endfor %}
{% empty %}

{% trans "No services available." %}

{% endfor %}