mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 15:54:48 +00:00
14 lines
617 B
Plaintext
14 lines
617 B
Plaintext
<%# locals: (transaction_group:) %>
|
|
<% date = transaction_group[0] %>
|
|
<% transactions = transaction_group[1] %>
|
|
|
|
<div class="bg-gray-25 rounded-xl p-1 w-full">
|
|
<div class="py-2 px-4 flex items-center justify-between font-medium text-xs text-gray-500">
|
|
<h4><%= date.strftime("%b %d, %Y") %> · <%= transactions.size %></h4>
|
|
<span><%= format_money -transactions.sum(&:amount_money) %></span>
|
|
</div>
|
|
<div class="bg-white shadow-xs rounded-md border border-alpha-black-25 divide-y divide-alpha-black-50">
|
|
<%= render partial: "transactions/transaction", collection: transactions %>
|
|
</div>
|
|
</div>
|