bornhack-website/shop/templates/product_detail.html

14 lines
284 B
HTML

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block 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 %}