From 851521dc475e3d434ff8e13bd9f9e558aa9af772 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Thu, 14 Nov 2024 16:14:33 +0000 Subject: Improved the feature slot handling - can now remove feature_slot value --- app/views/pdfresources/_form.html.erb | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'app/views/pdfresources/_form.html.erb') diff --git a/app/views/pdfresources/_form.html.erb b/app/views/pdfresources/_form.html.erb index a15bd67..a3922c9 100644 --- a/app/views/pdfresources/_form.html.erb +++ b/app/views/pdfresources/_form.html.erb @@ -92,7 +92,7 @@
<%= required_label_tag(form, :resource_type) %> - <%= form.collection_select :resource_type_id, ResourceType.all, :id, :name, {}, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> + <%= form.collection_select :resource_type_id, ResourceType.all, :id, :name, { prompt: "Select resource type" }, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
@@ -111,8 +111,17 @@
- <%= form.label :feature_slot, class: "font-bold" %> - <%= form.number_field :feature_slot, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> + <%= form.label :feature_slot, "Feature Position", class: "font-bold" %> + <%= form.select :feature_slot, + options_for_select([ + ["Not Featured", nil], + ["Position 1", 1], + ["Position 2", 2], + ["Position 3", 3] + ], pdfresource.feature_slot), + { include_blank: false }, + class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> +

Select a position to feature this resource, or "Not Featured" to remove from featured items. Only three resources can be featured at a time.

-- cgit v1.2.3