2016-05-19 09:19:51 +00:00
|
|
|
{% extends 'shop_base.html' %}
|
2016-05-12 17:08:54 +00:00
|
|
|
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
|
2016-05-19 09:19:51 +00:00
|
|
|
{% block shop_content %}
|
2016-05-12 17:08:54 +00:00
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_button "Pay with credit card" name="credit_card" button_type="submit" button_class="btn-primary" %}
|
|
|
|
{% bootstrap_button "Pay with blockchain" name="blockchain" button_type="submit" button_class="btn-primary" %}
|
|
|
|
{% bootstrap_button "Pay with bank transfer" name="bank_transfer" button_type="submit" button_class="btn-primary" %}
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|