Files
openfoodnetwork/app/views/spree/users/_saved_cards.html.haml
Maikel Linke ba51641271 Symbolise hash keys in HAML files
This was done by the haml-up script.
2024-02-22 15:01:14 +11:00

17 lines
628 B
Plaintext

%table
%tr
%th= t(:card_type)
%th= t(:card_number)
%th= t(:card_expiry_date)
%th= t('.default?')
%th= t('.delete?')
%tr.card{ id: "card{{ card.id }}", "ng-repeat": "card in savedCreditCards" }
%td.brand{ "ng-bind": '::card.brand' }
%td.number{ "ng-bind": '::card.number' }
%td.expiry{ "ng-bind": '::card.expiry' }
%td.is-default
%input{ type: 'radio', name: 'default_card', "ng-model": 'card.is_default', "ng-click": 'confirmSetDefault(card, $event)', "ng-value": "true" }
%td.actions
%button.tiny.alert.no-margin{ "ng-click": "deleteCard(card.id)" }
= t(:delete)