##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13617:3da7b1bc2882
r14954:42b5c332b2c2
Show More
new.html.erb
59 lines | 2.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Adds missing html titles (#14517)....
r11820 <%= title l(:label_issue_new) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Adds a hook before the new issue form....
r8073 <%= call_hook(:view_issues_new_top, {:issue => @issue}) %>
Jean-Philippe Lang
Implements /issues/new form for creating issues outside a project (#1003)....
r13617 <%= labelled_form_for @issue, :url => _project_issues_path(@project),
Jean-Philippe Lang
Issue forms cleanup....
r7981 :html => {:id => 'issue-form', :multipart => true} do |f| %>
Jean-Philippe Lang
Moved fields specific to new issues to the new issue form....
r8079 <%= error_messages_for 'issue' %>
Toshi MARUYAMA
replace tabs to spaces app/views/issues/new.html.erb...
r8767 <%= hidden_field_tag 'copy_from', params[:copy_from] if params[:copy_from] %>
Jean-Philippe Lang
Moved fields specific to new issues to the new issue form....
r8079 <div class="box tabular">
Toshi MARUYAMA
replace tabs to spaces app/views/issues/new.html.erb...
r8767 <div id="all_attributes">
Jean-Philippe Lang
Added the hability to copy an issue....
r860 <%= render :partial => 'issues/form', :locals => {:f => f} %>
Jean-Philippe Lang
Use the regular issue form to copy a single issue....
r8432 </div>
Jean-Philippe Lang
Moved fields specific to new issues to the new issue form....
r8079
Jean-Philippe Lang
Configurable behavour for linking issues on copy (#18500)....
r13286 <% if @copy_from && Setting.link_copied_issue == 'ask' %>
<p>
<label for="link_copy"><%= l(:label_link_copied_issue) %></label>
<%= check_box_tag 'link_copy', '1', @link_copy %>
</p>
<% end %>
Jean-Philippe Lang
Adds an option of the copy form to enable/disable attachments copy (#3055)....
r8557 <% if @copy_from && @copy_from.attachments.any? %>
Toshi MARUYAMA
replace tabs to spaces app/views/issues/new.html.erb...
r8767 <p>
<label for="copy_attachments"><%= l(:label_copy_attachments) %></label>
<%= check_box_tag 'copy_attachments', '1', @copy_attachments %>
</p>
<% end %>
Jean-Philippe Lang
Option to copy subtasks when copying issue(s) (#6965)....
r10144 <% if @copy_from && !@copy_from.leaf? %>
<p>
<label for="copy_subtasks"><%= l(:label_copy_subtasks) %></label>
<%= check_box_tag 'copy_subtasks', '1', @copy_subtasks %>
</p>
<% end %>
Jean-Philippe Lang
Adds an option of the copy form to enable/disable attachments copy (#3055)....
r8557
Jean-Philippe Lang
html5 compliance....
r9931 <p id="attachments_form"><label><%= l(:label_attachment_plural) %></label><%= render :partial => 'attachments/form', :locals => {:container => @issue} %></p>
Jean-Philippe Lang
Moved fields specific to new issues to the new issue form....
r8079
Jean-Philippe Lang
Code cleanup....
r8080 <% if @issue.safe_attribute? 'watcher_user_ids' -%>
Jean-Philippe Lang
Moved fields specific to new issues to the new issue form....
r8079 <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label>
Jean-Philippe Lang
Ability to add non-member watchers on issue creation (#5159)....
r9134 <span id="watchers_inputs">
Jean-Philippe Lang
Moved users list diplayed as available watchers on the new issue form to an helper....
r13613 <%= watchers_checkboxes(@issue, users_for_new_issue_watchers(@issue)) %>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/issues/new.html.erb...
r9145 </span>
<span class="search_for_watchers">
Jean-Philippe Lang
Removes calls to link_to_remote....
r9849 <%= link_to l(:label_search_for_watchers),
{:controller => 'watchers', :action => 'new', :project_id => @issue.project},
:remote => true,
:method => 'get' %>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/issues/new.html.erb...
r9145 </span>
</p>
Jean-Philippe Lang
Moved fields specific to new issues to the new issue form....
r8079 <% end %>
</div>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/issues/new.html.erb...
r9145 <%= submit_tag l(:button_create) %>
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
Jean-Philippe Lang
Implements /issues/new form for creating issues outside a project (#1003)....
r13617 <%= preview_link preview_new_issue_path(:project_id => @issue.project), 'issue-form' %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>
Jean-Philippe Lang
Added preview on add/edit issue form....
r801
<div id="preview" class="wiki"></div>
Jean-Philippe Lang
Fixed: syntax highlight doesn't appear in new ticket preview (#1976)....
r2220
<% content_for :header_tags do %>
Jean-Philippe Lang
Adds noindex,noarchive robots meta tag on form pages (#7582)....
r5323 <%= robot_exclusion_tag %>
Jean-Philippe Lang
Fixed: syntax highlight doesn't appear in new ticket preview (#1976)....
r2220 <% end %>