{% extends "layout.html" %} {% block content %} {{ lang("title.basket.checkout") }} {{ lang("basket.package.name") }} {{ lang("basket.package.price") }} {% for package in basket.packages %} {{ package.name }} Click for more details Billed {{ package.price|money }} {{ basket.currency }} every {{ package.expiryPeriod }} {% endfor %} {{ lang("basket.coupons.header") }} {{ lang("button.redeem") }} {% if basket.coupons|length > 0 %} {% for coupon in basket.coupons %} {{ coupon.code }} {{ coupon.description }} {% endfor %} {% endif %} {% if checkout.requestAddress %} Your details Full Name: Email address: Address Line 1: Address Line 2: City: Zip Code: State/Region: Country: Select a country {% for country in checkout.countries %} {{ country.name }} {% endfor %} {% endif %} {{ lang("basket.purchase.header") }} {{ lang("basket.purchase.terms", '', '')|raw }} {% if basket.price > 0 %} {% if checkout.gateways|length > 0 %} {% for gateway in checkout.gateways %} Click to checkout with {{ gateway.name }}. ({{ gateway.description }}) {% if gateway.offset != 0 %} ({% if gateway.offset > 0 %}+{% endif %}{{ gateway.offset|money }} {{ basket.currency }}) {% endif %} {% endfor %} {% else %} You need to add a payment gateway before players can donate. {% endif %} {% elseif store.allowFreeBaskets %} Click to checkout for free. {% endif %} {% endblock %}
You need to add a payment gateway before players can donate.