##// END OF EJS Templates
replace tabs to spaces at app/views/layouts/base.html.erb...
replace tabs to spaces at app/views/layouts/base.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7333 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6873:766a8130f048
r7213:ef65f26c3280
Show More
new.html.erb
79 lines | 2.9 KiB | text/plain | TextLexer
Jean-Philippe Lang
Removes the 'Copy' checkbox on the copy/move form....
r3013 <h2><%= @copy ? l(:button_copy) : l(:button_move) %></h2>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
Make use of link_to_issue....
r2948 <ul>
<% @issues.each do |issue| -%>
<li><%= link_to_issue issue %></li>
<% end -%>
</ul>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Eric Davis
Refactor: Extract a new IssueMovesController from IssuesController....
r3822 <% form_tag({:action => 'create'}, :id => 'move_form') do %>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <div class="box tabular">
Jean-Philippe Lang
Makes issue move form similar to bulk edit form....
r4469 <fieldset class="attributes">
<legend><%= l(:label_change_properties) %></legend>
<div class="splitcontentleft">
Jean-Philippe Lang
Removes spaces before colons....
r2312 <p><label for="new_project_id"><%=l(:field_project)%>:</label>
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 <%= select_tag "new_project_id",
Jean-Philippe Lang
Render the project list as a tree on Move form....
r2313 project_tree_options_for_select(@allowed_projects, :selected => @target_project),
Eric Davis
Refactor: Extract a new IssueMovesController from IssuesController....
r3822 :onchange => remote_function(:url => { :action => 'new' },
Jean-Philippe Lang
Added per-project tracker selection. Trackers can be selected on project settings....
r907 :method => :get,
:update => 'content',
:with => "Form.serialize('move_form')") %></p>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30
Jean-Philippe Lang
Removes spaces before colons....
r2312 <p><label for="new_tracker_id"><%=l(:field_tracker)%>:</label>
Jean-Philippe Lang
Fixed: admin should be able to move issues to any project....
r890 <%= select_tag "new_tracker_id", "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, "id", "name") %></p>
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311
Eric Davis
Enhanced the Issue Bulk Copy feature:...
r3008 <p>
<label><%= l(:field_status) %></label>
<%= select_tag('status_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %>
</p>
Eric Davis
Allow changing the Priority when moving issues....
r4177 <p>
<label><%= l(:field_priority) %></label>
Jean-Baptiste Barth
Do not show inactive issue priorities where not necessary (#8573)....
r5950 <%= select_tag('priority_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
Eric Davis
Allow changing the Priority when moving issues....
r4177 </p>
Jean-Philippe Lang
Makes issue move form similar to bulk edit form....
r4469 <p>
<label><%= l(:field_assigned_to) %></label>
<%= select_tag('assigned_to_id', content_tag('option', l(:label_no_change_option), :value => '') +
content_tag('option', l(:label_nobody), :value => 'none') +
Jean-Philippe Lang
Adds a optgroup for groups in users/groups select tags....
r6187 principals_options_for_select(@target_project.assignable_users)) %>
Jean-Philippe Lang
Makes issue move form similar to bulk edit form....
r4469 </p>
</div>
<div class="splitcontentright">
Eric Davis
Enhanced the Issue Bulk Copy feature:...
r3008 <p>
<label><%= l(:field_start_date) %></label>
<%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %>
</p>
<p>
<label><%= l(:field_due_date) %></label>
<%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %>
</p>
Jean-Philippe Lang
Makes issue move form similar to bulk edit form....
r4469 </div>
</fieldset>
Jean-Philippe Lang
Adds a hook on issue move form (#4850)....
r3342
Eric Davis
Allow adding notes when moving issues...
r4178 <fieldset><legend><%= l(:field_notes) %></legend>
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
<%= wikitoolbar_for 'notes' %>
</fieldset>
Jean-Philippe Lang
Fixed view_issues_move_bottom hook arguments (#4893)....
r3362 <%= call_hook(:view_issues_move_bottom, :issues => @issues, :target_project => @target_project, :copy => !!@copy) %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@32 e93f8b46-1217-0410-a6f0-8f06a7374b81
r30 </div>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116
Jean-Philippe Lang
Removes the 'Copy' checkbox on the copy/move form....
r3013 <% if @copy %>
<%= hidden_field_tag("copy_options[copy]", "1") %>
<%= submit_tag l(:button_copy) %>
<%= submit_tag l(:button_copy_and_follow), :name => 'follow' %>
<% else %>
<%= submit_tag l(:button_move) %>
<%= submit_tag l(:button_move_and_follow), :name => 'follow' %>
<% end %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>
Jean-Philippe Lang
Adds noindex,noarchive robots meta tag on form pages (#7582)....
r5323 <% content_for :header_tags do %>
<%= robot_exclusion_tag %>
<% end %>