blob: 5c3b2cc23151fa8cd39e31f96e9ee7581d71a394 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block content %}
<div class="container my-5">
<div class="row">
<h2>Mock Shopping Card</h2>
<section>
<div class="product">
<div class="description">
<h3>{{ resource.name }}</h3>
<hr/>
{% for price in prices %}
<div>
<h5>${{ price.get_display_price }}</h5>
<form action="{% url 'payments:create-checkout-session' price.id %}" method="POST">
{% csrf_token %}
<button type="submit" class="btn btn-primary">Checkout</button>
</form>
</div>
{% endfor %}
</div>
</div>
</section>
</div>
{% endblock content %}
|