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.
32 lines
1.4 KiB
32 lines
1.4 KiB
15 years ago
|
<% labelled_tabular_form_for :cost_object, @cost_object,
|
||
|
:url => {:action => 'edit', :id => @cost_object},
|
||
15 years ago
|
:html => {:multipart => true,
|
||
15 years ago
|
:id => 'cost_object_form',
|
||
15 years ago
|
:class => nil} do |f| %>
|
||
15 years ago
|
<%= error_messages_for 'cost_object' %>
|
||
15 years ago
|
<div class="box">
|
||
15 years ago
|
<div class="tabular">
|
||
15 years ago
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
||
15 years ago
|
</div>
|
||
15 years ago
|
<fieldset><legend><%= l(:label_attachment_plural )%></legend>
|
||
|
<p><%= render :partial => 'attachments/form' %></p>
|
||
|
</fieldset>
|
||
|
</div>
|
||
|
<%= submit_tag l(:button_submit) %>
|
||
|
<%= 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) %>
|
||
|
<% end %>
|
||
|
|
||
|
<div id="preview" class="wiki"></div>
|
||
|
|
||
|
<% content_for :header_tags do %>
|
||
|
<%= stylesheet_link_tag 'scm' %>
|
||
|
<%= stylesheet_link_tag 'costs', :plugin => 'redmine_costs' %>
|
||
15 years ago
|
<%= javascript_include_tag 'cost_objects', :plugin => 'redmine_costs' %>
|
||
15 years ago
|
<% end %>
|