{% 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' %}

{% for service in services %} {% empty %} {% endfor %}
{% trans 'Name' %} {% trans 'Duration' %} {% trans 'Price' %} {% trans 'Action' %}
{{ 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 %}
{% trans 'No service found' %}.
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}