Mercurial > hg > soundsoftware-site
view app/views/issues/_form.rhtml @ 182:5b074cadc4d1 feature_55
Institution order number explicit in seed data file and now correctly processed.
author | luisf |
---|---|
date | Thu, 03 Feb 2011 14:42:31 +0000 |
parents | ab75f33dcc6f |
children | 753f1380d6bc |
line wrap: on
line source
<%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %> <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>> <p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p> <%= observe_field :issue_tracker_id, :url => { :action => :new, :project_id => @project, :id => @issue }, :update => :attributes, :with => "Form.serialize('issue-form')" %> <p><%= f.text_field :subject, :size => 80, :required => true %></p> <% if User.current.allowed_to?(:manage_subtasks, @project) %> <p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10, :autocomplete => :on %> <br /> <em> <%=l(:text_issue_parent_issue_info)%></em> </p> <div id="parent_issue_candidates" class="autocomplete"></div> <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project) }')" %> <% end %> <p><%= f.text_area :description, :cols => 60, :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min), :accesskey => accesskey(:edit), :class => 'wiki-edit' %></p> </div> <div id="attributes" class="attributes"> <%= render :partial => 'issues/attributes' %> </div> <% if @issue.new_record? %> <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p> <% end %> <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%> <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label> <% @issue.project.users.sort.each do |user| -%> <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, !!(@issue.watched_by?(user) or user == User.current) %> <%=h user %></label> <% end -%> </p> <% end %> <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %> <%= wikitoolbar_for 'issue_description' %>