14 lines
294 B
HTML
14 lines
294 B
HTML
{% extends 'shop_base.html' %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block shop_content %}
|
|
|
|
<h2>{{ product.name }}</h2>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% bootstrap_button "Add to order" button_type="submit" button_class="btn-primary" %}
|
|
</form>
|
|
{% endblock %}
|