##// END OF EJS Templates
replace Mailer deliver syntax to Rails3 style at reminders method of mailer model...
replace Mailer deliver syntax to Rails3 style at reminders method of mailer model git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9662 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8064:86d2b223cc75
r9479:804864beca1c
Show More
_index.html.erb
35 lines | 1.7 KiB | text/plain | TextLexer
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <table class="list">
<thead><tr>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <th width="30%"><%=l(:field_name)%></th>
<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>
<th width="10%"></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
Resourcified custom fields....
r8024 <td><%= link_to h(custom_field.name), edit_custom_field_path(custom_field) %></td>
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 <td align="center"><%= l(Redmine::CustomFieldFormat.label_for(custom_field.field_format)) %></td>
<td align="center"><%= checked_image custom_field.is_required? %></td>
<% if tab[:name] == 'IssueCustomField' %>
<td align="center"><%= checked_image custom_field.is_for_all? %></td>
<td align="center"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
<% end %>
Jean-Philippe Lang
Fixed reorder links on custom fields....
r8064 <td align="center" style="width:15%;"><%= 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
Resourcified custom fields....
r8024 <%= link_to(l(:button_delete), custom_field_path(custom_field),
:method => :delete,
Toshi MARUYAMA
replace tabs to spaces at app/views/custom_fields/_index.html.erb...
r7265 :confirm => l(:text_are_you_sure),
:class => 'icon icon-del') %>
</td>
</tr>
<% end; reset_cycle %>
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 </tbody>
</table>
Jean-Philippe Lang
Resourcified custom fields....
r8024 <p><%= link_to l(:label_custom_field_new), new_custom_field_path(:type => tab[:name]), :class => 'icon icon-add' %></p>