##// END OF EJS Templates
remove trailing white-spaces from app/views/settings/_projects.html.erb...
remove trailing white-spaces from app/views/settings/_projects.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7286 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6894:6b462e36f816
r7166:d2453f05a4e6
Show More
_form.html.erb
40 lines | 1.9 KiB | text/plain | TextLexer
Eric Davis
Add view_issues_form_details_top hook...
r4051 <%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
Jean-Philippe Lang
Private issues (#7414)....
r5346 <% if @issue.safe_attribute_names.include?('is_private') %>
<p style="float:right; margin-right:1em;">
Jean-Philippe Lang
Adds an id attribute to the private label on the issue form (#8894)....
r6208 <label class="inline" for="issue_is_private" id="issue_is_private_label"><%= f.check_box :is_private, :no_label => true %> <%= l(:field_is_private) %></label>
Jean-Philippe Lang
Private issues (#7414)....
r5346 </p>
<% end %>
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066 <p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
Eric Davis
Refactor: merge IssuesController#update_form into IssuesController#new...
r3897 <%= observe_field :issue_tracker_id, :url => { :action => :new, :project_id => @project, :id => @issue },
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 :update => :attributes,
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066 :with => "Form.serialize('issue-form')" %>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
Jean-Philippe Lang
Makes issue description a non-required field (#2456)....
r2244 <p><%= 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),
:class => 'wiki-edit' %></p>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </div>
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">
Eric Davis
Use the full path to the partials...
r3975 <%= 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
<% if @issue.new_record? %>
Eric Davis
Add ids to some sections of the issue form...
r4161 <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <% end %>
Jean-Philippe Lang
Adds watchers selection on new issue form (#398). Permission 'add issue watchers' required....
r2162 <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%>
Eric Davis
Add ids to some sections of the issue form...
r4161 <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label>
Jean-Philippe Lang
Adds watchers selection on new issue form (#398). Permission 'add issue watchers' required....
r2162 <% @issue.project.users.sort.each do |user| -%>
Jean-Philippe Lang
Make use of #watched_by? in issue form....
r3000 <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watched_by?(user) %> <%=h user %></label>
Jean-Philippe Lang
Adds watchers selection on new issue form (#398). Permission 'add issue watchers' required....
r2162 <% end -%>
</p>
<% end %>
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <%= wikitoolbar_for 'issue_description' %>