summaryrefslogtreecommitdiffstats
path: root/app/views/issues/new.html.erb
blob: 4e8449570faaec3f165ec194d93071ad488de88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<h2><%=l(:label_issue_new)%></h2>

<%= call_hook(:view_issues_new_top, {:issue => @issue}) %>

<%= labelled_form_for @issue, :url => project_issues_path(@project),
                             :html => {:id => 'issue-form', :multipart => true} do |f| %>
  <%= error_messages_for 'issue' %>
  <%= hidden_field_tag 'copy_from', params[:copy_from] if params[:copy_from] %>
  <div class="box tabular">
    <div id="all_attributes">
    <%= render :partial => 'issues/form', :locals => {:f => f} %>
    </div>

    <% if @copy_from && @copy_from.attachments.any? %>
    <p>
      <label for="copy_attachments"><%= l(:label_copy_attachments) %></label>
      <%= check_box_tag 'copy_attachments', '1', @copy_attachments %>
    </p>
    <% end %>

    <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form', :locals => {:container => @issue} %></p>

    <% if @issue.safe_attribute? 'watcher_user_ids' -%>
      <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label>
      <span id="watchers_inputs">
        <%= watchers_checkboxes(@issue, @available_watchers) %>
      </span>
      <span class="search_for_watchers">
      <%= link_to_remote l(:label_search_for_watchers),
                   :url => {:controller => 'watchers', :action => 'new', :project_id => @issue.project},
                   :method => 'get' %>
      </span>
      </p>
    <% end %>
  </div>

  <%= submit_tag l(:button_create) %>
  <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
  <%= link_to_remote l(:label_preview),
                       { :url => preview_new_issue_path(:project_id => @project),
                         :method => 'post',
                         :update => 'preview',
                         :with => "Form.serialize('issue-form')",
                         :complete => "Element.scrollTo('preview')"
                       }, :accesskey => accesskey(:preview) %>

  <%= javascript_tag "Form.Element.focus('issue_subject');" %>
<% end %>

<div id="preview" class="wiki"></div>

<% content_for :header_tags do %>
    <%= stylesheet_link_tag 'scm' %>
    <%= robot_exclusion_tag %>
<% end %>