From 7deb88b29c69826a4bad7cbc4967226d5eedecf6 Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Tue, 13 Dec 2011 21:49:00 -0700 Subject: [PATCH] Fixed no-reference error on contracts.first_name --- app/views/contracts/show.html.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/contracts/show.html.erb b/app/views/contracts/show.html.erb index 5b2c9eb..92815d3 100644 --- a/app/views/contracts/show.html.erb +++ b/app/views/contracts/show.html.erb @@ -1,14 +1,14 @@

First Name: - <%= @contract.first_name %> + <%= @contract.signer.first_name %>

Last Name: - <%= @contract.last_name %> + <%= @contract.signer.last_name %>

Minor: - <%= @contract.cosigner %> + <%= @contract.signer.cosigner %>