akkounts/app/views/admin/donations/edit.html.erb
Sebastian Kippe 835152c656
All checks were successful
continuous-integration/drone/push Build is passing
Introduce ViewComponent
https://viewcomponent.org
2022-02-20 16:53:11 -06:00

13 lines
396 B
Plaintext

<%= render HeaderComponent.new(title: "Donations") %>
<%= render MainSimpleComponent.new do %>
<h2>Editing Donation</h2>
<%= render 'form', donation: @donation, url: admin_donation_path(@donation) %>
<p class="mt-8">
<%= link_to 'Show', admin_donation_path(@donation), class: 'ks-text-link' %> |
<%= link_to 'Back', admin_donations_path, class: 'ks-text-link' %>
<p>
<% end %>