2007-09-22 17:17:49 +04:00
|
|
|
<% if @project.boards.any? %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<table class="list">
|
2009-11-27 23:57:35 +03:00
|
|
|
<thead>
|
|
|
|
<th><%= l(:label_board) %></th>
|
|
|
|
<th><%= l(:field_description) %></th>
|
|
|
|
<th></th>
|
|
|
|
<th></th>
|
|
|
|
</thead>
|
2007-05-13 21:09:56 +04:00
|
|
|
<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") %>
|
2009-03-01 15:03:48 +03:00
|
|
|
<%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<% end %>
|
2009-11-27 23:57:35 +03:00
|
|
|
</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>
|
2007-05-13 21:09:56 +04:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
2009-11-27 23:57:35 +03: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 %>
|
|
|
|
|
2007-05-13 21:09:56 +04:00
|
|
|
<p><%= link_to_if_authorized l(:label_board_new), {:controller => 'boards', :action => 'new', :project_id => @project} %></p>
|