mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
28 lines
1.3 KiB
Text
28 lines
1.3 KiB
Text
<%# locals: (transaction:) %>
|
|
|
|
<div id="<%= dom_id(transaction, "transfer_match") %>" class="flex items-center gap-1">
|
|
<% if transaction.transfer.confirmed? %>
|
|
<span title="<%= transaction.transfer.payment? ? "Payment" : "Transfer" %> is confirmed">
|
|
<%= icon "link-2", size: "sm", class: "text-secondary" %>
|
|
</span>
|
|
<% elsif transaction.transfer.pending? %>
|
|
<span class="inline-flex items-center rounded-full bg-surface-inset px-2 py-0.5 text-xs font-medium text-secondary">
|
|
Auto-matched
|
|
</span>
|
|
|
|
<%= button_to transfer_path(transaction.transfer, transfer: { status: "confirmed" }),
|
|
method: :patch,
|
|
class: "text-secondary flex items-center justify-center cursor-pointer",
|
|
title: "Confirm match" do %>
|
|
<%= icon "check", size: "sm", class: "text-secondary hover:text-primary" %>
|
|
<% end %>
|
|
|
|
<%= button_to transfer_path(transaction.transfer, transfer: { status: "rejected" }),
|
|
method: :patch,
|
|
data: { turbo: false },
|
|
class: "text-secondary hover:text-primary flex items-center justify-center cursor-pointer",
|
|
title: "Reject match" do %>
|
|
<%= icon "x", size: "sm", class: "text-subdued hover:text-primary" %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|