From 2bab81b412184d67e223ace5d5eb94e541b01c82 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Wed, 7 Jul 2010 09:55:05 -0700 Subject: [PATCH] Link the contract name on the contracts list. --- app/views/contracts/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/contracts/index.html.erb b/app/views/contracts/index.html.erb index 7522af2..3253d06 100644 --- a/app/views/contracts/index.html.erb +++ b/app/views/contracts/index.html.erb @@ -15,7 +15,7 @@ <% collection.each do |contract| %> <% content_tag_for(:tr, contract) do %> <%= link_to(h(contract.id), contract_path(@project, contract)) %> - <%= h contract.name %> + <%= link_to(h(contract.name), contract_path(@project, contract)) %> <%= h contract.account_executive.name %> <%= h format_date(contract.end_date) %> <% end %>