mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
13 lines
420 B
Text
13 lines
420 B
Text
<div class="mx-auto md:w-2/3 w-full my-5">
|
|
<h1 class="font-bold text-4xl">Editing trip</h1>
|
|
|
|
<%= render "form", trip: @trip %>
|
|
|
|
<!-- Action Buttons Section -->
|
|
<div class="bg-base-100 items-center mt-8 mb-4">
|
|
<div class="flex flex-wrap gap-2 justify-center">
|
|
<%= link_to "Show this trip", @trip, class: "btn" %>
|
|
<%= link_to "Back to trips", trips_path, class: "btn" %>
|
|
</div>
|
|
</div>
|
|
</div>
|