##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11003:d6d7563a4bcf
r11491:19f70c95d1ae
Show More
_form.html.erb
45 lines | 2.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= labelled_fields_for :issue, @issue do |f| %>
Eric Davis
Add view_issues_form_details_top hook...
r4051 <%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %>
Jean-Philippe Lang
Code cleanup....
r8080 <% if @issue.safe_attribute? 'is_private' %>
Jean-Philippe Lang
Private issues (#7414)....
r5346 <p style="float:right; margin-right:1em;">
Jean-Philippe Lang
html5 compliance....
r9929 <%= f.check_box :is_private, :no_label => true %><label class="inline" for="issue_is_private" id="issue_is_private_label"><%= l(:field_is_private) %></label>
Jean-Philippe Lang
Private issues (#7414)....
r5346 </p>
<% end %>
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107
Jean-Philippe Lang
Use the regular issue form to copy a single issue....
r8432 <% if @issue.safe_attribute? 'project_id' %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <p><%= f.select :project_id, project_tree_options_for_select(@issue.allowed_target_projects, :selected => @issue.project), {:required => true},
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
Jean-Philippe Lang
Allows project to be changed from the regular issue update action (#4769, #9803)....
r8411 <% end %>
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107 <% if @issue.safe_attribute? 'tracker_id' %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <p><%= f.select :tracker_id, @issue.project.trackers.collect {|t| [t.name, t.id]}, {:required => true},
:onchange => "updateIssueFrom('#{escape_javascript project_issue_form_path(@project, :id => @issue, :format => 'js')}')" %></p>
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107 <% end %>
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107 <% if @issue.safe_attribute? 'subject' %>
Jean-Philippe Lang
Input fields restricted on length should have maxlength parameter set (#12833)....
r11003 <p><%= f.text_field :subject, :size => 80, :maxlength => 255, :required => true %></p>
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107 <% end %>
<% if @issue.safe_attribute? 'description' %>
Jean-Philippe Lang
Removed the "more" link to edit additional properties of an issue (#7603)....
r7982 <p>
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 <%= f.label_for_field :description, :required => @issue.required_attribute?('description') %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <%= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_form.html.erb...
r8003 <%= f.text_area :description,
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 :cols => 60,
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
:accesskey => accesskey(:edit),
Jean-Philippe Lang
Removed the "more" link to edit additional properties of an issue (#7603)....
r7982 :class => 'wiki-edit',
:no_label => true %>
<% end %>
</p>
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107 <%= wikitoolbar_for 'issue_description' %>
<% end %>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <div id="attributes" class="attributes">
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_form.html.erb...
r7236 <%= render :partial => 'issues/attributes' %>
Jean-Philippe Lang
Slight visual changes on the issue form....
r2267 </div>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
Jean-Philippe Lang
Allows project to be changed from the regular issue update action (#4769, #9803)....
r8411 <% end %>