_form.rhtml
42 lines
| 2.0 KiB
| text/html+ruby
|
RhtmlLexer
|
r4051 | <%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %> | ||
|
r2994 | <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>> | ||
|
r1066 | <p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p> | ||
|
r3897 | <%= observe_field :issue_tracker_id, :url => { :action => :new, :project_id => @project, :id => @issue }, | ||
|
r2994 | :update => :attributes, | ||
|
r1066 | :with => "Form.serialize('issue-form')" %> | ||
|
r1083 | <p><%= f.text_field :subject, :size => 80, :required => true %></p> | ||
|
r3459 | |||
|
r4197 | <% if User.current.allowed_to?(:manage_subtasks, @project) %> | ||
<p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p> | ||||
|
r3459 | <div id="parent_issue_candidates" class="autocomplete"></div> | ||
|
r3831 | <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project) }')" %> | ||
|
r3459 | <% end %> | ||
|
r2244 | <p><%= f.text_area :description, | ||
|
r1083 | :cols => 60, | ||
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min), | ||||
:accesskey => accesskey(:edit), | ||||
:class => 'wiki-edit' %></p> | ||||
|
r1115 | </div> | ||
|
r1083 | |||
|
r2994 | <div id="attributes" class="attributes"> | ||
|
r3975 | <%= render :partial => 'issues/attributes' %> | ||
|
r2267 | </div> | ||
|
r800 | |||
<% if @issue.new_record? %> | ||||
|
r4161 | <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p> | ||
|
r800 | <% end %> | ||
|
r2162 | <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%> | ||
|
r4161 | <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label> | ||
|
r2162 | <% @issue.project.users.sort.each do |user| -%> | ||
|
r3000 | <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watched_by?(user) %> <%=h user %></label> | ||
|
r2162 | <% end -%> | ||
</p> | ||||
<% end %> | ||||
|
r1785 | <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %> | ||
|
r800 | <%= wikitoolbar_for 'issue_description' %> | ||