diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-28 17:00:45 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-28 17:00:45 +0000 |
commit | 0880096162a37ace2cad96e88b49147e3e9ba5ac (patch) | |
tree | 65e85a5f2608c1d8e78077775147153f404b6c40 /app | |
parent | 571d316b138810d007c40e88009203bf28fc5a67 (diff) | |
download | redmine-0880096162a37ace2cad96e88b49147e3e9ba5ac.tar.gz redmine-0880096162a37ace2cad96e88b49147e3e9ba5ac.zip |
Same heading on message edit/show views.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10103 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/messages/edit.html.erb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb index 6371b5c45..fdea28e87 100644 --- a/app/views/messages/edit.html.erb +++ b/app/views/messages/edit.html.erb @@ -1,6 +1,7 @@ -<h2><%= link_to h(@board.name), :controller => 'boards', - :action => 'show', :project_id => @project, - :id => @board %> » <%= h @message.subject %></h2> +<%= breadcrumb link_to(l(:label_board_plural), project_boards_path(@project)), + link_to(h(@board.name), project_board_path(@project, @board)) %> + +<h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2> <%= form_for @message, { :as => :message, |