From 78ba1d60cc25ea338f99157dab0cafe21cfb0cad Mon Sep 17 00:00:00 2001 From: Dennis Deli Date: Thu, 14 Nov 2024 09:15:26 -0500 Subject: [PATCH] changed homepage layout --- app/views/home/show.html.erb | 38 ++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/app/views/home/show.html.erb b/app/views/home/show.html.erb index 18a8573..f0aa57e 100644 --- a/app/views/home/show.html.erb +++ b/app/views/home/show.html.erb @@ -30,32 +30,32 @@ <% if @processing_fees.count > 0 %>
-
Processing Fees
<% @processing_fees.each do |fee| %> -
-
- Fee Date
- <%= format_date fee.creation_time %> -
<%= fee.fee_description %>
- PROCESSING +
+
+
+ <%= fee.fee_description %>
+ <%= fee.item_title %> +
-
- Item
- <%= fee.item_title %> -
-
- Balance
- <%= number_to_currency fee.balance %> -
- -
- Owner
- <%= fee.owner_description %> +
+ Debit + <%= number_to_currency fee.balance %>
+ Fine date: + <%= format_date fee.creation_time %>
+ Fine Type: + <%= fee.fee_status %>
+ Fine Main Location: + <%= fee.owner_description %>
+ Fine ID: + <%= fee.fee_id %>
+
<% end %> <% end %> + <% if Rails.env.development? %>

<%= link_to "Reload Fees", load_alma_fees_path, data: { disable_with: "Loading Fees, Please wait..." }%>