Mercurial > hg > soundsoftware-site
diff app/views/trackers/_form.html.erb @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | c6c2cbd0afee |
children | 433d4f72a19b |
line wrap: on
line diff
--- a/app/views/trackers/_form.html.erb Fri Feb 24 18:36:29 2012 +0000 +++ b/app/views/trackers/_form.html.erb Fri Feb 24 19:09:32 2012 +0000 @@ -8,19 +8,19 @@ <% if IssueCustomField.all.any? %> <p> - <label><%= l(:label_custom_field_plural) %></label> - <% IssueCustomField.all.each do |field| %> - <label class="block"> - <%= check_box_tag 'tracker[custom_field_ids][]',field.id, @tracker.custom_fields.include?(field) %> - <%=h field.name %> - </label> - <% end %> + <label><%= l(:label_custom_field_plural) %></label> + <% IssueCustomField.all.each do |field| %> + <label class="block"> + <%= check_box_tag 'tracker[custom_field_ids][]',field.id, @tracker.custom_fields.include?(field) %> + <%=h field.name %> + </label> + <% end %> </p> <%= hidden_field_tag 'tracker[custom_field_ids][]', '' %> <% end %> <% if @tracker.new_record? && @trackers.any? %> -<p><label><%= l(:label_copy_workflow_from) %></label> +<p><label for="copy_workflow_from"><%= l(:label_copy_workflow_from) %></label> <%= select_tag(:copy_workflow_from, content_tag("option") + options_from_collection_for_select(@trackers, :id, :name)) %></p> <% end %> <!--[eoform:tracker]-->