{% extends 'base.html' %} {% block title %}Отзыв — Beauty Salon{% endblock %} {% block content %}

Оставить отзыв

Услуга: {{ appointment.service }}
Мастер: {{ appointment.master|default:"—" }}
Дата: {{ appointment.date|date:"d.m.Y" }} {% if appointment.time %} в {{ appointment.time|time:"H:i" }}{% endif %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% endblock %}