_boards.html.erb
36 lines
| 1.2 KiB
| text/plain
|
TextLexer
|
r736 | <% if @project.boards.any? %> | ||
|
r526 | <table class="list"> | ||
|
r7262 | <thead><tr> | ||
<th><%= l(:label_board) %></th> | ||||
<th><%= l(:field_description) %></th> | ||||
<th></th> | ||||
<th></th> | ||||
</tr></thead> | ||||
<tbody> | ||||
|
r526 | <% @project.boards.each do |board| | ||
|
r7262 | next if board.new_record? %> | ||
<tr class="<%= cycle 'odd', 'even' %>"> | ||||
|
r526 | <td><%=h board.name %></td> | ||
<td><%=h board.description %></td> | ||||
<td align="center"> | ||||
<% if authorize_for("boards", "edit") %> | ||||
|
r7900 | <%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %> | ||
|
r526 | <% end %> | ||
|
r2988 | </td> | ||
<td class="buttons"> | ||||
|
r7900 | <% if User.current.allowed_to?(:manage_boards, @project) %> | ||
<%= link_to l(:button_edit), edit_project_board_path(@project, board), :class => 'icon icon-edit' %> | ||||
<%= link_to l(:button_delete), project_board_path(@project, board), :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del' %> | ||||
<% end %> | ||||
|
r2988 | </td> | ||
|
r7262 | </tr> | ||
|
r526 | <% end %> | ||
|
r7262 | </tbody> | ||
|
r526 | </table> | ||
|
r736 | <% else %> | ||
<p class="nodata"><%= l(:label_no_data) %></p> | ||||
<% end %> | ||||
|
r7900 | <% 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 %> | ||||