You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
431 B
15 lines
431 B
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<div class="col-12">
|
|
<div class="content">
|
|
<div class="content__title text-center">Оформление заказа</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
{% crispy form %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|