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

10 lines
249 B
Text
Raw Normal View History

2024-06-12 15:10:53 -04:00
<% content_for :title, 'New Import' %>
2024-03-15 18:27:31 -04:00
<div class="mx-auto md:w-2/3 w-full">
<h1 class="font-bold text-4xl">New import</h1>
<%= render "form", import: @import %>
2024-07-04 17:00:07 -04:00
<%= link_to "Back to imports", imports_path, class: "btn mx-5 mb-5" %>
2024-03-15 18:27:31 -04:00
</div>