{% extends "shop/checkout/base_pay_ship.html" %} {% load i18n satchmo_util %} {# credit card pay_ship version - we just need to collect CC info #} {% block extra-head %} {{ block.super }} {% include "shop/_jquery.html" %} {% include "shop/_jquery_form.html" %} {% blackbird_logging %} {% endblock %} {% block payment_table %}

{% trans "Payment Information" %}

{% if not PAYMENT_LIVE %} TEST MODEUse Visa 4111111111111111 for CC#
any future date for expiration
any 3 digit CCV
{% endif %} {{ form.card_holder }} {% if form.card_holder.errors %}*** {{ form.card_holder.errors|join:", " }}{% endif %} {{ form.credit_type }} {% if form.credit_type.errors %}*** {{ form.credit_type.errors|join:", " }}{% endif %} {{ form.credit_number }} {% if form.credit_number.errors %}*** {{ form.credit_number.errors|join:", " }}{% endif %} {{ form.issue_num }} {% if form.issue_num.errors %}*** {{ form.issue_num.errors|join:", " }}{% endif %} {{ form.month_start}} {{ form.year_start }} {% if form.year_start.errors %}*** {{ form.year_start.errors|join:", " }}{% endif %} {% if form.month_start.errors %}*** {{ form.month_start.errors|join:", " }}{% endif %} {{ form.month_expires }} {{form.year_expires}} {% if form.year_expires.errors %}*** {{ form.year_expires.errors|join:", " }}{% endif %} {{ form.ccv}} {% if form.ccv.errors %}*** {{ form.ccv.errors|join:", " }}{% endif %} {% endblock %}