dawarich/app/views/imports/index.html.erb
2024-03-15 23:27:31 +01:00

10 lines
333 B
Text

<div class="w-full">
<div class="flex justify-between items-center">
<h1 class="font-bold text-4xl">Imports</h1>
<%= link_to "New import", new_import_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
</div>
<div id="imports" class="min-w-full">
<%= render @imports %>
</div>
</div>