{% extends BASE_TEMPLATE %} {% load i18n %} {% load static %} {% block customCSS %} {% endblock %} {% block title %} {% trans 'Service List' %} {% endblock %} {% block description %} {% trans 'Service List' %}. {% endblock %} {% block body %} {% trans 'Service List' %} {% trans 'Name' %} {% trans 'Duration' %} {% trans 'Price' %} {% trans 'Action' %} {% for service in services %} {{ service.name }} {{ service.get_duration }} {{ service.get_price_text }} {% translate "Are you sure you want to delete this service?" as d_modal_message %} {% if request.user.is_superuser %} {% endif %} {% empty %} {% trans 'No service found' %}. {% endfor %} {% if messages %} {% for message in messages %} {{ message }} {% endfor %} {% endif %} {% endblock %} {% block customJS %} {% endblock %}