diff options
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/render/partials.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/render/partials.rb b/actionpack/lib/action_view/render/partials.rb index 6ad40ad8d4..19bd04c4b8 100644 --- a/actionpack/lib/action_view/render/partials.rb +++ b/actionpack/lib/action_view/render/partials.rb @@ -71,6 +71,11 @@ module ActionView # # The :as option may be used when rendering partials. # + # Also, you can specify a partial which will be render as a spacer between each element by passing partial name to + # +:spacer_template+. The following example will render "advertiser/_ad_divider.erb" between each ad partial. + # + # <%= render :partial => "ad", :collection => @advertisements, :spacer_template => "ad_divider" %> + # # NOTE: Due to backwards compatibility concerns, the collection can't be one of hashes. Normally you'd also # just keep domain objects, like Active Records, in there. # |