dawarich/app/views/notifications/show.html.erb

13 lines
476 B
Text
Raw Normal View History

2024-07-04 16:20:12 -04:00
<div class="mx-auto md:w-2/3 w-full flex">
<div class="mx-auto">
<%= render @notification %>
2024-07-04 17:00:07 -04:00
<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" %>
2024-07-04 17:00:07 -04:00
</div>
2024-07-04 16:20:12 -04:00
</div>
</div>
</div>