mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-05 22:26:07 +00:00
17 lines
632 B
Plaintext
17 lines
632 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', click: 'confirmSetDefault(card, $event)', value: "true"} }
|
|
%td.actions
|
|
%button.tiny.alert.no-margin{ "ng-click": "deleteCard(card.id)" }
|
|
= t(:delete)
|