From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 11:50:12 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/projects/settings/_boards.rhtml. X-Git-Tag: 1.3.0~978 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d53fde6a88f02089beba2626ed783c11322d7bd2;p=redmine.git rename .rhtml to .html.erb of app/views/projects/settings/_boards.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6985 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/projects/settings/_boards.html.erb b/app/views/projects/settings/_boards.html.erb new file mode 100644 index 000000000..b2d5d54a1 --- /dev/null +++ b/app/views/projects/settings/_boards.html.erb @@ -0,0 +1,32 @@ +<% if @project.boards.any? %> + + + + + + + + +<% @project.boards.each do |board| + next if board.new_record? %> + + + + + + +<% end %> + +
<%= l(:label_board) %><%= l(:field_description) %>
<%=h board.name %><%=h board.description %> + <% if authorize_for("boards", "edit") %> + <%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %> + <% end %> + + <%= link_to_if_authorized l(:button_edit), {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}, :class => 'icon icon-edit' %> + <%= link_to_if_authorized l(:button_delete), {:controller => 'boards', :action => 'destroy', :project_id => @project, :id => board}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> +
+<% else %> +

<%= l(:label_no_data) %>

+<% end %> + +

<%= link_to_if_authorized l(:label_board_new), {:controller => 'boards', :action => 'new', :project_id => @project} %>

diff --git a/app/views/projects/settings/_boards.rhtml b/app/views/projects/settings/_boards.rhtml deleted file mode 100644 index b2d5d54a1..000000000 --- a/app/views/projects/settings/_boards.rhtml +++ /dev/null @@ -1,32 +0,0 @@ -<% if @project.boards.any? %> - - - - - - - - -<% @project.boards.each do |board| - next if board.new_record? %> - - - - - - -<% end %> - -
<%= l(:label_board) %><%= l(:field_description) %>
<%=h board.name %><%=h board.description %> - <% if authorize_for("boards", "edit") %> - <%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %> - <% end %> - - <%= link_to_if_authorized l(:button_edit), {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}, :class => 'icon icon-edit' %> - <%= link_to_if_authorized l(:button_delete), {:controller => 'boards', :action => 'destroy', :project_id => @project, :id => board}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> -
-<% else %> -

<%= l(:label_no_data) %>

-<% end %> - -

<%= link_to_if_authorized l(:label_board_new), {:controller => 'boards', :action => 'new', :project_id => @project} %>