##// END OF EJS Templates
Raise the height of text custom fields....
Raise the height of text custom fields. git-svn-id: http://svn.redmine.org/redmine/trunk@16252 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15870:8e4cb42f8e06
Show More
_index.html.erb
30 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <table class="list custom_fields">
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <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 %>
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| -%>
Jean-Philippe Lang
Moving a custom field value in the order switches in the edit view (#21535)....
r14603 <% back_url = custom_fields_path(:tab => tab[:name]) %>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <tr>
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>
Jean-Philippe Lang
Make it work for 0 projects (#24587)....
r15688 <td><%= l(:label_x_projects, :count => @custom_fields_projects_count[custom_field.id] || 0) 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 %>
<td class="buttons">
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <%= reorder_handle(custom_field, :url => custom_field_path(custom_field), :param => 'custom_field') %>
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>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <% end %>
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 </tbody>
</table>