{% extends 'base.html' %} {% load widget_tweaks shop_extras i18n %} {% block content %}

Choose Your Installment Plan

Order #{{ order.id }} - Total Amount: ${{ order.total|floatformat:2 }}
{% csrf_token %}
{% for key, plan in installment_plans.items %}
{{ plan.name }}

{{ plan.description }}

${{ order.total|div:plan.months|floatformat:2 }} per month
Duration: {{ plan.months }} months
Total: ${{ order.total|floatformat:2 }}
{% endfor %}

Back to Checkout
Secure Payment Information

SSL Encrypted

Multiple Cards

Mobile Friendly
{% endblock %}