From 0c236603161908c72ab86ab9c682a08edd77774f Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Tue, 12 Nov 2024 19:41:00 +0000 Subject: Tidying up the resource form --- app/views/pdfresources/_form.html.erb | 45 +++++++++++++++++++---------------- app/views/pdfresources/new.html.erb | 4 ++-- 2 files changed, 27 insertions(+), 22 deletions(-) (limited to 'app') diff --git a/app/views/pdfresources/_form.html.erb b/app/views/pdfresources/_form.html.erb index a75121a..39c8314 100644 --- a/app/views/pdfresources/_form.html.erb +++ b/app/views/pdfresources/_form.html.erb @@ -12,55 +12,60 @@ <% end %>
- <%= form.label :name %> + <%= form.label :name, class: "font-bold" %> <%= form.text_field :name, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
+ +
+ <%= form.label :description, class: "font-bold" %> + <%= form.textarea :description, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> +

Go to two with the description here. THIS WILL BE RICH TEXT.

+
- <%= form.label :stripe_product_id %> - <%= form.text_field :stripe_product_id, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> + <%= form.label :card_description, class: "font-bold" %> + <%= form.textarea :card_description, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> +

This is a much shorter description that is used inside the "card" boxes on the listings page.

- <%= form.label :pdfs %> + <%= form.label :pdfs, "Resource PDFs", class: "font-bold" %> <%= form.file_field :pdfs, multiple: true, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> +

You can upload up to 10 PDFs per resource.

- <%= form.label :thumbnails %> + <%= form.label :thumbnails, class: "font-bold" %> <%= form.file_field :thumbnails, multiple: true, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> +

You can upload up to 10 thumbnails per resource.

- <%= form.label :price %> - <%= form.text_field :price, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> + <%= form.label :price, class: "font-bold" %> + <%= form.number_field :price, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> +

This is what we will sell it for!

+
+ +
+ <%= form.label :stripe_product_id, "Stripe Product ID", class: "font-bold" %> + <%= form.text_field :stripe_product_id, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
- <%= form.label :age_range %> + <%= form.label :age_range, class: "font-bold" %> <%= form.text_field :age_range, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
- <%= form.label :curriculum %> + <%= form.label :curriculum, class: "font-bold" %> <%= form.text_field :curriculum, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
- <%= form.label :feature_slot %> + <%= 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 :description %> - <%= form.textarea :description, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> -
- -
- <%= form.label :card_description %> - <%= form.textarea :card_description, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %> -
-
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
diff --git a/app/views/pdfresources/new.html.erb b/app/views/pdfresources/new.html.erb index 5bd072b..73f1a01 100644 --- a/app/views/pdfresources/new.html.erb +++ b/app/views/pdfresources/new.html.erb @@ -1,5 +1,5 @@ -
-

New pdfresource

+
+

Add a new Resource

<%= render "form", pdfresource: @pdfresource %> -- cgit v1.2.3