{% load i18n %}
{% trans "Owner's first name:" %}
{{ wallet.first_name }}
{% trans "Owner's last name:" %}
{{ wallet.last_name }}
{% trans "Card type:" %}
{% for val, name in wallet.CARD_TYPE_CHOICES %}{% if val == wallet.card_type %}{{ name }}{% endif %}{% endfor %}
{% trans "Card number:" %}
{{ wallet.card_number }}
{% trans "Card expiration date:" %}
{{ wallet.card_expiry }}

{% trans "Change this card" %}