##// END OF EJS Templates
Adds custom fields functional tests....
Adds custom fields functional tests. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2268 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2244:bc270b31c366
r2266:b4640a0904db
Show More
_form.rhtml
61 lines | 3.0 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066 <% if @issue.new_record? %>
<p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
<%= observe_field :issue_tracker_id, :url => { :action => :new },
:update => :content,
:with => "Form.serialize('issue-form')" %>
John Goerzen
Added line under tracker name to make clear what is going on here...
r1258 <hr />
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066 <% end %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
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
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <div class="splitcontentleft">
Jean-Philippe Lang
Fixed: empty status list shouldn't be displayed when the user can not change the status....
r1125 <% if @issue.new_record? || @allowed_statuses.any? %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
<% else %>
<p><label><%= l(:field_status) %></label> <%= @issue.status.name %></p>
<% end %>
<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
<p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
<%= prompt_to_remote(l(:label_issue_category_new),
l(:label_issue_category_new), 'category[name]',
{:controller => 'projects', :action => 'add_issue_category', :id => @project},
Jean-Philippe Lang
Added tabindex property on wiki toolbar buttons and 'new category' link....
r1073 :class => 'small', :tabindex => 199) if authorize_for('projects', 'add_issue_category') %></p>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <%= content_tag('p', f.select(:fixed_version_id,
(@project.versions.sort.collect {|v| [v.name, v.id]}),
{ :include_blank => true })) unless @project.versions.empty? %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 </div>
<div class="splitcontentright">
<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
<p><%= f.text_field :estimated_hours, :size => 3 %> <%= l(:field_hours) %></p>
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
</div>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <div style="clear:both;"> </div>
Jean-Philippe Lang
Fixes custom fields display order at several places (#1768)....
r1730 <%= render :partial => 'form_custom_fields' %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800
<% if @issue.new_record? %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <p><label><%=l(:label_attachment_plural)%></label><%= 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) -%>
Jean-Philippe Lang
Do not hardcode Watcher string in r2164....
r2163 <p><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| -%>
<label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watcher_user_ids.include?(user.id) %> <%=h user %></label>
<% 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' %>