<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. See doc/COPYRIGHT.rdoc for more details. ++#%> <% if @project.boards.any? %> <% @project.boards.each do |board| next if board.new_record? %> <% end %>
<%= Board.model_name.human %> <%= Board.human_attribute_name(: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 => :delete, :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} %>