bornhack-website/shop/templates/product_detail.html
2016-05-14 19:20:47 +02:00

13 lines
254 B
HTML

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block content %}
<h2>{{ product.name }}</h2>
<form method="POST">
{% csrf_token %}
{% bootstrap_button "Add to order" button_type="submit" button_class="btn-primary" %}
</form>
{% endblock %}