13 lines
308 B
HTML
13 lines
308 B
HTML
{% extends 'orders/base.html' %}
|
|
|
|
{% block title %}Create an order{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container-fluid">
|
|
<form action="" method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Create"/>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|