kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
12 years ago
|
<%#-- copyright
|
||
|
OpenProject is a project management system.
|
||
|
|
||
|
Copyright (C) 2012-2013 the OpenProject Team
|
||
|
|
||
|
This program is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU General Public License version 3.
|
||
|
|
||
|
See doc/COPYRIGHT.rdoc for more details.
|
||
|
|
||
|
++#%>
|
||
|
|
||
|
<h2><%=l(:label_issue_new)%></h2>
|
||
|
|
||
|
|
||
|
<%= labelled_tabular_form_for controller.new_work_package,
|
||
|
:url => new_project_work_package_path(@project, @work_package),
|
||
|
:html => { :multipart => true,
|
||
|
:id => 'issue-form',
|
||
|
:class => 'tabular new-issue-form' } do |f| %>
|
||
|
|
||
|
<%= error_messages_for 'issue' %>
|
||
|
|
||
|
<div class="box">
|
||
|
<%= render :partial => 'form', :locals => { :f => f,
|
||
|
:work_package => controller.new_work_package,
|
||
|
:project => controller.project,
|
||
|
:priorities => controller.priorities } %>
|
||
|
<%= send_notification_option %>
|
||
|
</div>
|
||
|
|
||
|
<%= submit_tag l(:button_create) %>
|
||
|
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
|
||
|
<%= link_to_issue_preview(@project) %>
|
||
|
|
||
|
<%= javascript_tag "Form.Element.focus('issue_subject');" %>
|
||
|
<% end %>
|
||
|
|
||
|
<div id="preview" class="wiki"></div>
|
||
|
|
||
|
<% content_for :header_tags do %>
|
||
|
<%= robot_exclusion_tag %>
|
||
|
<% end %>
|