Basic book shop support.
[prawokultury.git] / shop / templatetags / shop_tags.py
1 # -*- coding: utf-8 -*-
2 # This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django import template
6 from shop.forms import OrderForm
7
8 register = template.Library()
9
10
11 @register.inclusion_tag('shop/snippets/order_form.html', takes_context=True)
12 def order_form_for(context, offer, form=None):
13     if form is None:
14         form = OrderForm(offer)
15     return {'form': form}