summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_form.rhtml
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-06 08:08:29 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-06 08:08:29 +0000
commit75c4c4f6b3fa799f06354467517d3f39cd9e945a (patch)
tree193995ce016519866d51cb6bee022bde6346b8e7 /app/views/issues/_form.rhtml
parentfa094a3fe5f8ae0ae03214a080280c64f51bd6b0 (diff)
downloadredmine-75c4c4f6b3fa799f06354467517d3f39cd9e945a.tar.gz
redmine-75c4c4f6b3fa799f06354467517d3f39cd9e945a.zip
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@811 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/_form.rhtml')
-rw-r--r--app/views/issues/_form.rhtml48
1 files changed, 48 insertions, 0 deletions
diff --git a/app/views/issues/_form.rhtml b/app/views/issues/_form.rhtml
new file mode 100644
index 000000000..28d2b97ec
--- /dev/null
+++ b/app/views/issues/_form.rhtml
@@ -0,0 +1,48 @@
+<%= error_messages_for 'issue' %>
+<div class="box">
+
+<div class="splitcontentleft">
+<% if @issue.new_record? %>
+<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},
+ :class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
+</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>
+
+<p><%= f.text_field :subject, :size => 80, :required => true %></p>
+<p><%= f.text_area :description, :required => true, :cols => 60, :rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min), :class => 'wiki-edit' %></p>
+<p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
+<% for @custom_value in @custom_values %>
+ <p><%= custom_field_tag_with_label @custom_value %></p>
+<% end %>
+
+<% if @issue.new_record? %>
+<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>
+<%= image_to_function "add.png", "addFileField();return false" %></label>
+<%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
+<% end %>
+</div>
+
+<%= wikitoolbar_for 'issue_description' %>
+
+<% content_for :header_tags do %>
+ <%= javascript_include_tag 'calendar/calendar' %>
+ <%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
+ <%= javascript_include_tag 'calendar/calendar-setup' %>
+ <%= stylesheet_link_tag 'calendar' %>
+<% end %>