diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-31 17:17:52 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-31 17:17:52 +0000 |
commit | bc153cb61df37e2097c5bec529cabdb15e6887bf (patch) | |
tree | 05be0525dc3258c00349e7cc6b5ab333ca4139c0 /app/views/messages | |
parent | 9554f0133ff634264eb110c91ad317be28e6dd32 (diff) | |
download | redmine-bc153cb61df37e2097c5bec529cabdb15e6887bf.tar.gz redmine-bc153cb61df37e2097c5bec529cabdb15e6887bf.zip |
Support for subforums (#3831).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10142 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/messages')
-rw-r--r-- | app/views/messages/_form.html.erb | 2 | ||||
-rw-r--r-- | app/views/messages/edit.html.erb | 3 | ||||
-rw-r--r-- | app/views/messages/show.html.erb | 3 |
3 files changed, 3 insertions, 5 deletions
diff --git a/app/views/messages/_form.html.erb b/app/views/messages/_form.html.erb index f7cd8e367..d9f48af5c 100644 --- a/app/views/messages/_form.html.erb +++ b/app/views/messages/_form.html.erb @@ -18,7 +18,7 @@ <% if !replying && !@message.new_record? && @message.safe_attribute?('board_id') %> <p><label><%= l(:label_board) %></label><br /> - <%= f.select :board_id, @project.boards.collect {|b| [b.name, b.id]} %></p> + <%= f.select :board_id, boards_options_for_select(@message.project.boards) %></p> <% end %> <p> diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb index fdea28e87..7ce0560bb 100644 --- a/app/views/messages/edit.html.erb +++ b/app/views/messages/edit.html.erb @@ -1,5 +1,4 @@ -<%= breadcrumb link_to(l(:label_board_plural), project_boards_path(@project)), - link_to(h(@board.name), project_board_path(@project, @board)) %> +<%= board_breadcrumb(@message) %> <h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2> diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index 8e9ecceca..db9a2c8af 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -1,5 +1,4 @@ -<%= breadcrumb link_to(l(:label_board_plural), project_boards_path(@project)), - link_to(h(@board.name), project_board_path(@project, @board)) %> +<%= board_breadcrumb(@message) %> <div class="contextual"> <%= watcher_tag(@topic, User.current) %> |