mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-23 05:28:53 +00:00
14 lines
468 B
Plaintext
14 lines
468 B
Plaintext
%table
|
|
%tr
|
|
%th= t(:card_type)
|
|
%th= t(:card_number)
|
|
%th= t(:card_expiry_date)
|
|
%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.actions
|
|
%a{"rel" => "nofollow", "data-method" => "delete", "ng-href" => "{{card.delete_link}}" }
|
|
= t(:delete)
|