[ranch] 51: Capitalize menu items.

https://svn.lrde.epita.fr/svn/ranch/trunk Index: ChangeLog from Nicolas Despr�s <nicolas.despres@gmail.com> Capitalize menu items. * web/ranch/app/views/benches/_menubar.rhtml, * web/ranch/app/views/projects/_menubar.rhtml: Captitalize menu items. benches/_menubar.rhtml | 4 ++-- projects/_menubar.rhtml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Index: web/ranch/app/views/benches/_menubar.rhtml --- web/ranch/app/views/benches/_menubar.rhtml (revision 50) +++ web/ranch/app/views/benches/_menubar.rhtml (working copy) @@ -3,12 +3,12 @@ <tr> <td><%= content_tag "h3", @bench.name %></td> <td> - <%= link_to "information", :controller => "benches", + <%= link_to "Information", :controller => "benches", :action => "show", :bench_id => @bench.id %> </td> <td> - <%= link_to "regression", :controller => "benches", + <%= link_to "Regression", :controller => "benches", :action => "regression", :bench_id => @bench.id %> </td> Index: web/ranch/app/views/projects/_menubar.rhtml --- web/ranch/app/views/projects/_menubar.rhtml (revision 50) +++ web/ranch/app/views/projects/_menubar.rhtml (working copy) @@ -3,12 +3,12 @@ <tr> <td><%= content_tag "h3", @project.name %></td> <td> - <%= link_to "information", :controller => "projects", + <%= link_to "Information", :controller => "projects", :action => "show", :project_id => @project.id %> </td> <td> - <%= link_to "benchmarks", :controller => "benches", + <%= link_to "Benchmarks", :controller => "benches", :action => "index", :project_id => @project.id %> </td>
participants (1)
-
Nicolas Despr�s