{% extends "base.html" %} {% block title %}Услуги{% endblock %} {% block content %}

Наши услуги

{% if services %}
{% for svc in services %}
{% if svc.image %} {{ svc.name }} {% else %}
{% endif %}
{{ svc.name }}
{% if svc.description is defined and svc.description %}

{{ svc.description[:120] }}{% if svc.description|length > 120 %}…{% endif %}

{% endif %}
{% if svc.price is defined and svc.price %}

{{ "%.2f"|format(svc.price) }} ₽

{% endif %} {% if svc.duration is defined and svc.duration %}

{{ svc.duration }}

{% endif %} {% if svc.category is defined and svc.category %} {{ svc.category }} {% endif %} Подробнее
{% endfor %}
{% else %}
Услуги пока не добавлены.
{% endif %}
{% endblock %}