From 1384987c8f0d20f4287b9026c87a93cc0611663e Mon Sep 17 00:00:00 2001 From: Josh Kalov Date: Mon, 26 Sep 2016 13:23:19 -0500 Subject: [PATCH] fix display order of gift card info. Issue #203 --- app/views/gift_cards/index.html.erb | 2 +- app/views/people/show.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/gift_cards/index.html.erb b/app/views/gift_cards/index.html.erb index 4d07eb1b2..f98ae020b 100644 --- a/app/views/gift_cards/index.html.erb +++ b/app/views/gift_cards/index.html.erb @@ -117,7 +117,7 @@ - + <% @gift_cards.each do |gift_card| %> <%= gift_card.id %> diff --git a/app/views/people/show.html.erb b/app/views/people/show.html.erb index 05bb8aa9e..fad1a9a04 100644 --- a/app/views/people/show.html.erb +++ b/app/views/people/show.html.erb @@ -176,8 +176,8 @@ ****-****-*** <%= form.text_field :gift_card_number, placeholder: "#####", class: 'input-small', id: "new-cardnumber" %> - <%= form.text_field :amount, placeholder: "Amount",class: 'input-mini', id: "new-amount" %> <%= form.text_field :expiration_date, placeholder: "MM/YY", class: 'input-mini', id: "new-expirationdate" %> + <%= form.text_field :amount, placeholder: "Amount",class: 'input-mini', id: "new-amount" %> <%= form.submit 'Add Gift Card', :class => "btn" %> <% end %>