dawarich/app/views/notifications/show.html.erb
2025-10-21 20:01:13 +02:00

12 lines
476 B
Text

<div class="mx-auto md:w-2/3 w-full flex">
<div class="mx-auto">
<%= render @notification %>
<div class='my-5'>
<%= link_to "Back to notifications", notifications_path, class: "btn btn-small" %>
<div class="inline-block ml-2">
<%= button_to "Destroy this notification", @notification, data: { turbo_confirm: "Are you sure?", turbo_method: :delete }, method: :delete, class: "btn btn-small btn-warning" %>
</div>
</div>
</div>
</div>