_boards.rhtml
32 lines
| 1.2 KiB
| text/html+ruby
|
RhtmlLexer
|
r736 | <% if @project.boards.any? %> | ||
|
r526 | <table class="list"> | ||
|
r3620 | <thead><tr> | ||
|
r2988 | <th><%= l(:label_board) %></th> | ||
<th><%= l(:field_description) %></th> | ||||
<th></th> | ||||
<th></th> | ||||
|
r3620 | </tr></thead> | ||
|
r526 | <tbody> | ||
<% @project.boards.each do |board| | ||||
next if board.new_record? %> | ||||
<tr class="<%= cycle 'odd', 'even' %>"> | ||||
<td><%=h board.name %></td> | ||||
<td><%=h board.description %></td> | ||||
<td align="center"> | ||||
<% if authorize_for("boards", "edit") %> | ||||
|
r2478 | <%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %> | ||
|
r526 | <% end %> | ||
|
r2988 | </td> | ||
<td class="buttons"> | ||||
<%= 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' %> | ||||
</td> | ||||
|
r526 | </tr> | ||
<% end %> | ||||
|
r2988 | </tbody> | ||
|
r526 | </table> | ||
|
r736 | <% else %> | ||
<p class="nodata"><%= l(:label_no_data) %></p> | ||||
<% end %> | ||||
|
r526 | <p><%= link_to_if_authorized l(:label_board_new), {:controller => 'boards', :action => 'new', :project_id => @project} %></p> | ||