order_reg.html 275 B

12345678
  1. {% extends "webservice_running/base.html" %}
  2. {% block content %}
  3. <form action="{% url 'order_reg' %}" method="post">
  4. {% csrf_token %}
  5. {{ form.as_p }}
  6. <button type="submit">Оформить заказ</button>
  7. </form>
  8. {% endblock content %}