Basic book shop support.
[prawokultury.git] / shop / templates / shop / snippets / order_form.html
1 {% load i18n %}
2 {% load url from future %}
3
4 <form action="{% url 'shop_buy' form.offer.entry.slug %}" method="post">
5     <table>
6     {{ form.as_table }}
7     <tr><td></td><td>
8         <button type="submit" style="border: none; background: none; cursor: pointer">
9         <img alt="{% trans 'Donate!' %}" src="{% static 'img/payu.png' % }" />
10         </button>
11         </td></tr>
12     </table>
13 </form>