Stripe checkout #104411

Merged
Anna Sirota merged 61 commits from stripe into main 2024-06-17 18:08:41 +02:00
2 changed files with 0 additions and 24 deletions
Showing only changes of commit 3d70b43ced - Show all commits

View File

@ -249,7 +249,6 @@ Symbol | Description
│   ├── 🔴 bank_transfer_details.txt
│   ├── 🔴 bank_transfer_reference.txt
│   ├── 🟢 billing_address_form.html
│   ├── 🟢 current_plan_variation.html
│   ├── 🟢 footer.html
│   ├── ❌ header_jumbotron.html
│   ├── 🟢 info.html

View File

@ -1,23 +0,0 @@
{% load looper %}
{% load subscriptions %}
{% get_taxable current_plan_variation.price current_plan_variation.plan.product.type as current_price %}
<div>
<div class="row">
<div class="col">
<h4 class="mb-0">Renewal</h4>
</div>
<div class="col text-end">
{{ current_plan_variation.collection_method|capfirst }}, {{ current_plan_variation|recurring_pricing:current_price.price }}
</div>
</div>
<div class="row mb-3">
<div class="col fw-bold">
<h2 class="mb-0">Total</h2>
</div>
<div class="col text-end">
<h2 class="mb-0"><span>{{ current_price.price.with_currency_symbol }}</span></h2>
<p class="text-muted x-sm"><span>{{ current_price.format_tax_amount }}</span></p>
</div>
</div>
</div>