mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
* Create sidebar element and working with turbo * Add overview fields * Add columns to transations and tidy modal * permit new transaction params * Add autosubmit form controller * remove unused show code
13 lines
691 B
Plaintext
13 lines
691 B
Plaintext
<%= link_to transaction_path(transaction), data: { turbo_frame: "modal" }, class: "text-gray-900 flex items-center gap-6 py-4 text-sm font-medium hover:bg-gray-50 px-4", id: dom_id(transaction) do %>
|
|
<div class="w-96 flex items-center gap-2">
|
|
<div class="w-8 h-8 flex items-center justify-center rounded-full bg-gray-600/5 text-gray-600"><%= transaction.name[0].upcase %></div>
|
|
<p class="text-gray-900"><%= transaction.name %></p>
|
|
</div>
|
|
<div>
|
|
<p><%= transaction.account.name %></p>
|
|
</div>
|
|
<div class="ml-auto">
|
|
<p class="<%= transaction.amount < 0 ? "text-green-600" : "" %>"><%= number_to_currency(-transaction.amount, { precision: 2 }) %></p>
|
|
</div>
|
|
<% end %>
|