##// END OF EJS Templates
Display due date in red on overdue issues (#20812)....
Display due date in red on overdue issues (#20812). git-svn-id: http://svn.redmine.org/redmine/trunk@14732 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13661:b778c51e9049
r14350:aeab970972dc
Show More
_index.html.erb
30 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <table class="list">
<thead><tr>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <th><%=l(:field_name)%></th>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <th><%=l(:field_field_format)%></th>
<th><%=l(:field_is_required)%></th>
<% if tab[:name] == 'IssueCustomField' %>
<th><%=l(:field_is_for_all)%></th>
<th><%=l(:label_used_by)%></th>
<% end %>
<th><%=l(:button_sort)%></th>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <th></th>
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 </tr></thead>
<tbody>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%>
<tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="name"><%= link_to custom_field.name, edit_custom_field_path(custom_field) %></td>
Jean-Philippe Lang
Merged custom fields format refactoring....
r12125 <td><%= l(custom_field.format.label) %></td>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td><%= checked_image custom_field.is_required? %></td>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <% if tab[:name] == 'IssueCustomField' %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td><%= checked_image custom_field.is_for_all? %></td>
<td><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <% end %>
Jean-Philippe Lang
Adds a CSS class for reorder links (#15307)....
r12035 <td class="reorder"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <td class="buttons">
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link custom_field_path(custom_field) %>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 </td>
</tr>
<% end; reset_cycle %>
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 </tbody>
</table>