{% extends 'base.html' %} {% block title %}Создание заявки{% endblock %} {% block content %}

Создание заявки

{% for request in requests %} {% if request.status == "canceled" %} {% endif %} {% empty %}
Нет заявок.
{% endfor %}
Услуга Адрес Контактный номер Дата и время Тип оплаты Статус Описание другой услуги Причина отмены
{{ request.service.name }} {{ request.address }} {{ request.contact_number }} {{ request.date_time }} {{ request.get_payment_type_display }} {{ request.get_status_display }} {{ request.other_service_description }}{{ request.status_cancel }}
Создать заявку
{% endblock %}