Cleaning edit/delete links style.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3102 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
c2e2040fc0
commit
724141a39a
|
@ -1,6 +1,11 @@
|
||||||
<% if @project.boards.any? %>
|
<% if @project.boards.any? %>
|
||||||
<table class="list">
|
<table class="list">
|
||||||
<thead><th><%= l(:label_board) %></th><th><%= l(:field_description) %></th><th style="width:15%"></th><th style="width:15%"></th><th style="width:15%"></th></thead>
|
<thead>
|
||||||
|
<th><%= l(:label_board) %></th>
|
||||||
|
<th><%= l(:field_description) %></th>
|
||||||
|
<th></th>
|
||||||
|
<th></th>
|
||||||
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% @project.boards.each do |board|
|
<% @project.boards.each do |board|
|
||||||
next if board.new_record? %>
|
next if board.new_record? %>
|
||||||
|
@ -12,11 +17,13 @@
|
||||||
<%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %>
|
<%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</td>
|
</td>
|
||||||
<td align="center"><%= link_to_if_authorized l(:button_edit), {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}, :class => 'icon icon-edit' %></td>
|
<td class="buttons">
|
||||||
<td align="center"><%= 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>
|
<%= 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>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<% else %>
|
<% else %>
|
||||||
<p class="nodata"><%= l(:label_no_data) %></p>
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<th><%= l(:label_issue_category) %></th>
|
<th><%= l(:label_issue_category) %></th>
|
||||||
<th><%= l(:field_assigned_to) %></th>
|
<th><%= l(:field_assigned_to) %></th>
|
||||||
<th style="width:15%"></th>
|
<th></th>
|
||||||
<th style="width:15%"></th>
|
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for category in @project.issue_categories %>
|
<% for category in @project.issue_categories %>
|
||||||
|
@ -12,8 +11,10 @@
|
||||||
<tr class="<%= cycle 'odd', 'even' %>">
|
<tr class="<%= cycle 'odd', 'even' %>">
|
||||||
<td><%=h(category.name) %></td>
|
<td><%=h(category.name) %></td>
|
||||||
<td><%=h(category.assigned_to.name) if category.assigned_to %></td>
|
<td><%=h(category.assigned_to.name) if category.assigned_to %></td>
|
||||||
<td align="center"><%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %></td>
|
<td class="buttons">
|
||||||
<td align="center"><%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %></td>
|
<%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %>
|
||||||
|
<%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Reference in New Issue