OpenProject is the leading open source project management software.
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.
openproject/lib/widget/controls/save.rb

11 lines
459 B

class Widget::Controls::Save < Widget::Controls
def render
return "" if @subject.new_record? or !@options[:can_save]
write link_to content_tag(:span, content_tag(:em, l(:button_save)), :class => "button-icon icon-save"), {},
:href => "#", :id => "query-breadcrumb-save",
:class => "button secondary",
:title => l(:button_save),
:"data-target" => url_for(:action => 'update', :id => @subject.id, :set_filter => '1')
end
end