Files
fizzy/app/views/categories/new.html.erb
T
2024-09-04 14:54:11 -04:00

13 lines
491 B
Plaintext

<turbo-frame id="new_category">
<%= form_with model: [@bubble, @category], data: { turbo_frame: "_top" } do |form| %>
<%= form.text_field :title, class: "input borderless", autofocus: "on", list: "categories-list" %>
<%= form.submit "Create Category", hidden: true %>
<datalist id="categories-list">
<%= Category.all.each do | category | %>
<option value="<%= category.title %>"></option>
<% end %>
</datalist>
<% end %>
</turbo-frame>