uncloud/uncloud_v3/app/templates/app/productorder_form.html

14 lines
242 B
HTML
Raw Normal View History

<h2>Order {{ product }}</h2>
{% if timeframe %}
<p>Timeframe: {{ timeframe }}</p>
{% endif %}
<form method="post" >
{% csrf_token %}
<table>
{{ form }}
</table>
2022-07-16 16:22:52 +00:00
<button type="submit" class="btn btn-primary">Order</button>
</form>