summaryrefslogtreecommitdiffstats
path: root/app/views/issues/new.html.erb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-13 20:02:49 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-13 20:02:49 +0000
commit59c1141e08637a923a0aa80a86c8f8d6dbf0cb41 (patch)
treea319f4339296487a1c9a8a482b909dda0cddc4ab /app/views/issues/new.html.erb
parentcd0113a2875f7261495d7abbd11dbb10d650848c (diff)
downloadredmine-59c1141e08637a923a0aa80a86c8f8d6dbf0cb41.tar.gz
redmine-59c1141e08637a923a0aa80a86c8f8d6dbf0cb41.zip
Moved fields specific to new issues to the new issue form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8199 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/new.html.erb')
-rw-r--r--app/views/issues/new.html.erb17
1 files changed, 14 insertions, 3 deletions
diff --git a/app/views/issues/new.html.erb b/app/views/issues/new.html.erb
index a6334391a..48d786879 100644
--- a/app/views/issues/new.html.erb
+++ b/app/views/issues/new.html.erb
@@ -4,10 +4,21 @@
<% labelled_form_for @issue, :url => project_issues_path(@project),
:html => {:id => 'issue-form', :multipart => true} do |f| %>
- <%= error_messages_for 'issue' %>
- <div class="box tabular">
+ <%= error_messages_for 'issue' %>
+ <div class="box tabular">
<%= render :partial => 'issues/form', :locals => {:f => f} %>
- </div>
+
+ <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p>
+
+ <% if 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) %> <%=h user %></label>
+ <% end -%>
+ </p>
+ <% end %>
+ </div>
+
<%= submit_tag l(:button_create) %>
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
<%= link_to_remote l(:label_preview),