Mercurial > hg > soundsoftware-site
diff .svn/pristine/12/129a1be9ab4fb00e9e24a4a97d3003da6c507962.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/12/129a1be9ab4fb00e9e24a4a97d3003da6c507962.svn-base Fri Feb 24 19:09:32 2012 +0000 @@ -0,0 +1,32 @@ +<% 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 => 'edit', :project_id => @project, :id => board}) %> + <% end %> + </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> + </tr> +<% end %> + </tbody> +</table> +<% else %> +<p class="nodata"><%= l(:label_no_data) %></p> +<% end %> + +<p><%= link_to_if_authorized l(:label_board_new), {:controller => 'boards', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %></p>