##// END OF EJS Templates
Fixed: reminder mails are not sent when delivery_method is :async_smtp (#5058)....
Fixed: reminder mails are not sent when delivery_method is :async_smtp (#5058). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9367 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9145:5f37d0d1c806
r9233:fde9c7315ac6
Show More
new.html.erb
55 lines | 2.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <h2><%=l(:label_issue_new)%></h2>
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
Issue forms cleanup....
r7981 <% labelled_form_for @issue, :url => project_issues_path(@project),
: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
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
Adds an option of the copy form to enable/disable attachments copy (#3055)....
r8557
Jean-Philippe Lang
Better handling of attachments when issue validation fails (#10253)....
r8771 <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= 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">
<%= watchers_checkboxes(@issue, @available_watchers) %>
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
Ability to add non-member watchers on issue creation (#5159)....
r9134 <%= link_to_remote l(:label_search_for_watchers),
:url => {:controller => 'watchers', :action => 'new', :project_id => @issue.project},
: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' %>
<%= link_to_remote l(:label_preview),
Toshi MARUYAMA
route: split issue preview route to adding and editing...
r8766 { :url => preview_new_issue_path(:project_id => @project),
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 :method => 'post',
:update => 'preview',
:with => "Form.serialize('issue-form')",
Jean-Philippe Lang
Replaced window.hash= by Element.scrollTo()...
r1122 :complete => "Element.scrollTo('preview')"
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 }, :accesskey => accesskey(:preview) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/new.html.erb...
r7105
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/issues/new.html.erb...
r9145 <%= javascript_tag "Form.Element.focus('issue_subject');" %>
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 %>
<%= stylesheet_link_tag 'scm' %>
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 %>