diff --git a/app/views/participants/show.html.erb b/app/views/participants/show.html.erb index c9a9802..3c7e949 100644 --- a/app/views/participants/show.html.erb +++ b/app/views/participants/show.html.erb @@ -33,7 +33,7 @@

DOB: - <%= @participant.dob.strftime('%B, %d, %Y') if @participant.dob.present? %> + <%= @participant.dob.strftime('%B %d, %Y') if @participant.dob.present? %>

@@ -74,8 +74,8 @@ <% @participant.employments.each do |employment| %> <%= employment.worker&.name || 'No Worker Assigned' %> - <%= employment.start_date %> - <%= employment.end_date %> + <%= employment.start_date.strftime('%B %d, %Y') if employment.start_date.present? %> + <%= employment.end_date.strftime('%B %d, %Y') if employment.end_date.present? %> <% end %>