method
render_partial
rails latest stable - Class:
ActionController::Base
render_partial(partial_path = default_template_name, object = nil, local_assigns = nil, status = nil)protected
No documentation available.
# File actionpack/lib/action_controller/base.rb, line 673
def render_partial(partial_path = default_template_name, object = nil, local_assigns = nil, status = nil)
add_variables_to_assigns
render_text(@template.render_partial(partial_path, object, local_assigns), status)
end