{% extends 'base.html' %} {% load static %} {% block title %} Wallet {% endblock %} {% block css %} {% endblock %} {% block content %} {% csrf_token %}
{% include 'customer_header.html' %}
{% include 'customer_sidebar.html' %}
{% if storedcards_data %} {% for card in storedcards_data %} {% endfor %} {% else %} {% endif %}
Serial No. Card Number Expiry Date Action
{{card.serialno}} ************{{card.last4digits}} {{card.expiry_date}}
No record exists
{% include 'customer_footer.html' %}
{% endblock %} {% block js %} {% endblock %}