comparison .svn/pristine/f8/f8521c11cdeac38e38f69c0622051d315a0519fd.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1295:622f24f53b42
1 <h2><%=l(:label_enumerations)%></h2>
2
3 <% Enumeration.get_subclasses.each do |klass| %>
4 <h3><%= l(klass::OptionName) %></h3>
5
6 <% enumerations = klass.shared %>
7 <% if enumerations.any? %>
8 <table class="list"><thead>
9 <tr>
10 <th><%= l(:field_name) %></th>
11 <th style="width:15%;"><%= l(:field_is_default) %></th>
12 <th style="width:15%;"><%= l(:field_active) %></th>
13 <th style="width:15%;"></th>
14 <th align="center" style="width:10%;"> </th>
15 </tr></thead>
16 <% enumerations.each do |enumeration| %>
17 <tr class="<%= cycle('odd', 'even') %>">
18 <td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td>
19 <td class="center" style="width:15%;"><%= checked_image enumeration.is_default? %></td>
20 <td class="center" style="width:15%;"><%= checked_image enumeration.active? %></td>
21 <td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td>
22 <td class="buttons">
23 <%= delete_link enumeration_path(enumeration) %>
24 </td>
25 </tr>
26 <% end %>
27 </table>
28 <% reset_cycle %>
29 <% end %>
30
31 <p><%= link_to l(:label_enumeration_new), new_enumeration_path(:type => klass.name) %></p>
32 <% end %>
33
34 <% html_title(l(:label_enumerations)) -%>