Files
nairobi/app/views/admin/banners/new.html.erb
Javi Martín e850ae2ff9 Move banner form partial to a component
Other than simplifying the controller, this'll make it easier to write
tests for this code.
2024-11-08 14:24:57 +01:00

11 lines
236 B
Plaintext

<div class="banner-new row">
<div class="small-12 column">
<%= back_link_to admin_banners_path %>
<h1><%= t("admin.banners.new.creating") %></h1>
<%= render Admin::Banners::FormComponent.new(@banner) %>
</div>
</div>