summaryrefslogtreecommitdiffstats
path: root/app/views/projects/settings/_boards.html.erb
blob: 66a838a4e6f33864a9a30703c6442e6241077dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<% if @project.boards.any? %>
<table class="list">
  <thead><tr>
    <th><%= l(:label_board) %></th>
    <th><%= l(:field_description) %></th>
    <th></th>
    <th></th>
  </tr></thead>
  <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") %>
      <%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %>
    <% end %>
    </td>
    <td class="buttons">
    <% 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 %>
    </td>
  </tr>
<% end %>
  </tbody>
</table>
<% else %>
<p class="nodata"><%= l(:label_no_data) %></p>
<% end %>

<% 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 %>