dawarich/app/views/imports/_import.html.erb

13 lines
465 B
Text
Raw Normal View History

2024-03-15 18:27:31 -04:00
<div id="<%= dom_id import %>">
<p class="my-5">
<strong class="block font-medium mb-1">Name:</strong>
<%= import.name %>
</p>
<% if action_name != "show" %>
<%= link_to "Show this import", import, class: "rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
<%= link_to "Edit this import", edit_import_path(import), class: "rounded-lg py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %>
<hr class="mt-6">
<% end %>
</div>