mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
13 lines
465 B
Text
13 lines
465 B
Text
|
|
<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>
|