diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-07-28 11:50:18 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-07-28 11:50:18 +0000 |
commit | f3241385cd7b74e2d063511b7f8f3893fdfacfd4 (patch) | |
tree | ef555aa4bf534d95021ea21dbff2b2b5aee6808f /app/views/custom_fields/new.html.erb | |
parent | 1e738fbacaa0eb044a3cd5b345ee0a906f073187 (diff) | |
download | redmine-f3241385cd7b74e2d063511b7f8f3893fdfacfd4.tar.gz redmine-f3241385cd7b74e2d063511b7f8f3893fdfacfd4.zip |
Adds missing html titles (#14517).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12050 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields/new.html.erb')
-rw-r--r-- | app/views/custom_fields/new.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/custom_fields/new.html.erb b/app/views/custom_fields/new.html.erb index 71e7197ec..7af7735f0 100644 --- a/app/views/custom_fields/new.html.erb +++ b/app/views/custom_fields/new.html.erb @@ -1,6 +1,6 @@ -<h2><%= link_to l(:label_custom_field_plural), :controller => 'custom_fields', :action => 'index' %> - » <%= link_to l(@custom_field.type_name), :controller => 'custom_fields', :action => 'index', :tab => @custom_field.class.name %> - » <%= l(:label_custom_field_new) %></h2> +<%= title [l(:label_custom_field_plural), custom_fields_path], + [l(@custom_field.type_name), custom_fields_path(:tab => @custom_field.class.name)], + l(:label_custom_field_new) %> <%= labelled_form_for :custom_field, @custom_field, :url => custom_fields_path, :html => {:id => 'custom_field_form'} do |f| %> <%= render :partial => 'form', :locals => { :f => f } %> |