mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* Transaction scaffold * Rough in transaction views * Fix sort order * Fix mass assignment issue * Fix test * Simplify CI workflow * Don't seed db before test
9 lines
415 B
Plaintext
9 lines
415 B
Plaintext
<div class="mx-auto md:w-2/3 w-full">
|
|
<h1 class="font-bold text-4xl">Editing transaction</h1>
|
|
|
|
<%= render "form", transaction: @transaction %>
|
|
|
|
<%= link_to "Show this transaction", @transaction, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
<%= link_to "Back to transactions", transactions_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
</div>
|