{% extends 'base.html' %} {% load i18n %} {% load static %} {% block title %} {% trans 'Service List' %} {% endblock %} {% block description %} {% trans 'Service List' %}. {% endblock %} {% block body %} {% translate "Confirm Deletion" as modal_title %} {% translate "Delete" as delete_btn_modal %}

{% 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' %}.
{% include 'modal/confirm_modal.html' %}
{% endblock %} {% block customJS %} {% endblock %}