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.
35 lines
1.1 KiB
35 lines
1.1 KiB
15 years ago
|
<h2><%=l(:label_cost_object_new)%></h2>
|
||
15 years ago
|
|
||
15 years ago
|
<% labelled_tabular_form_for :cost_object, @cost_object,
|
||
|
:html => {:multipart => true, :id => 'cost_object_form'} do |f| %>
|
||
|
<%= error_messages_for 'cost_object' %>
|
||
15 years ago
|
<div class="box">
|
||
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
||
|
</div>
|
||
|
<%= submit_tag l(:button_create) %>
|
||
|
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
|
||
13 years ago
|
<%= link_to_remote l(:label_preview),
|
||
15 years ago
|
{ :url => { :controller => 'cost_objects', :action => 'preview', :project_id => @project },
|
||
15 years ago
|
:method => 'post',
|
||
|
:update => 'preview',
|
||
15 years ago
|
:with => "Form.serialize('cost_object_form')",
|
||
15 years ago
|
:complete => "Element.scrollTo('preview')"
|
||
|
}, :accesskey => accesskey(:preview) %>
|
||
13 years ago
|
|
||
15 years ago
|
<%= javascript_tag "Form.Element.focus('cost_object_subject');" %>
|
||
15 years ago
|
<% end %>
|
||
|
|
||
|
<div id="preview" class="wiki"></div>
|
||
|
|
||
|
<% content_for :header_tags do %>
|
||
15 years ago
|
<%= stylesheet_link_tag 'scm' %>
|
||
|
<%= stylesheet_link_tag 'costs', :plugin => 'redmine_costs' %>
|
||
15 years ago
|
<% end %>
|
||
15 years ago
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|