a11yist/app/views/links/_form.html.erb

13 lines
590 B
Text
Raw Normal View History

2024-11-01 00:50:15 +01:00
<%= bootstrap_form_with(model: link, data: { controller: "unsaved-changes" }) do |form| %>
2024-07-26 00:59:00 +02:00
<div data-controller="check-link">
<%= form.text_field :url, placeholder: "https://wikipedia.org", data: { "check-link-target": "input" } %>
<%= link_to(link.url, link.url, target: "_blank", class: "mb-2", data: { "check-link-target": "button" }) %>
</div>
<%= form.collection_select :link_category_id, LinkCategory.all.order(:name), :id, :name, include_blank: !link.persisted? %>
<%= form.text_field :text %>
<%= form.rich_text_area :description %>
<%= form.submit %>
<% end %>