2007-09-22 17:17:49 +04:00
|
|
|
<% if @project.boards.any? %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<table class="list">
|
2011-09-18 06:02:01 +04:00
|
|
|
<thead><tr>
|
|
|
|
<th><%= l(:label_board) %></th>
|
|
|
|
<th><%= l(:field_description) %></th>
|
|
|
|
<th></th>
|
|
|
|
<th></th>
|
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
2012-07-31 21:17:52 +04:00
|
|
|
<% Board.board_tree(@project.boards) do |board, level|
|
2011-09-18 06:02:01 +04:00
|
|
|
next if board.new_record? %>
|
|
|
|
<tr class="<%= cycle 'odd', 'even' %>">
|
2012-07-31 21:17:52 +04:00
|
|
|
<td style="padding-left: <%= level * 18 %>px;"><%= link_to board.name, project_board_path(@project, board) %></td>
|
2007-05-13 21:09:56 +04:00
|
|
|
<td><%=h board.description %></td>
|
|
|
|
<td align="center">
|
|
|
|
<% if authorize_for("boards", "edit") %>
|
2011-12-02 01:14:09 +04:00
|
|
|
<%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<% end %>
|
2009-11-27 23:57:35 +03:00
|
|
|
</td>
|
|
|
|
<td class="buttons">
|
2011-12-02 01:14:09 +04:00
|
|
|
<% if User.current.allowed_to?(:manage_boards, @project) %>
|
|
|
|
<%= link_to l(:button_edit), edit_project_board_path(@project, board), :class => 'icon icon-edit' %>
|
2012-07-07 18:36:49 +04:00
|
|
|
<%= delete_link project_board_path(@project, board) %>
|
2011-12-02 01:14:09 +04:00
|
|
|
<% end %>
|
2009-11-27 23:57:35 +03:00
|
|
|
</td>
|
2011-09-18 06:02:01 +04:00
|
|
|
</tr>
|
2007-05-13 21:09:56 +04:00
|
|
|
<% end %>
|
2011-09-18 06:02:01 +04:00
|
|
|
</tbody>
|
2007-05-13 21:09:56 +04:00
|
|
|
</table>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% else %>
|
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
|
|
<% end %>
|
|
|
|
|
2011-12-02 01:14:09 +04:00
|
|
|
<% if User.current.allowed_to?(:manage_boards, @project) %>
|
|
|
|
<p><%= link_to l(:label_board_new), new_project_board_path(@project), :class => 'icon icon-add' %></p>
|
|
|
|
<% end %>
|