Mercurial > hg > soundsoftware-site
view .svn/pristine/25/25da0d3c14f76d4d61d0a700c479d9e89afb5581.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 11 Sep 2014 10:24:38 +0100 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
<%= form_tag(project_enumerations_path(@project), :method => :put, :class => "tabular") do %> <table class="list"> <thead><tr> <th><%= l(:field_name) %></th> <th><%= l(:enumeration_system_activity) %></th> <% TimeEntryActivity.new.available_custom_fields.each do |value| %> <th><%= h value.name %></th> <% end %> <th><%= l(:field_active) %></th> </tr></thead> <% @project.activities(true).each do |enumeration| %> <%= fields_for "enumerations[#{enumeration.id}]", enumeration do |ff| %> <tr class="<%= cycle('odd', 'even') %>"> <td class="name"> <%= ff.hidden_field :parent_id, :value => enumeration.id unless enumeration.project %> <%= h(enumeration) %> </td> <td class="tick"><%= checked_image !enumeration.project %></td> <% enumeration.custom_field_values.each do |value| %> <td> <%= custom_field_tag "enumerations[#{enumeration.id}]", value %> </td> <% end %> <td> <%= ff.check_box :active %> </td> </tr> <% end %> <% end %> </table> <div class="contextual"> <%= link_to(l(:button_reset), project_enumerations_path(@project), :method => :delete, :data => {:confirm => l(:text_are_you_sure)}, :class => 'icon icon-del') %> </div> <%= submit_tag l(:button_save) %> <% end %>