diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-07-02 16:38:50 +0100 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-07-02 16:40:42 +0100 |
commit | 2b43620e3c1352028f19550fcde4632d65cbd191 (patch) | |
tree | b28ddcc92eae7fe9ceea11c2f55b1956f5d4efc7 /actionpack/CHANGELOG | |
parent | 4f75840d72b96fff34d65b59480da7d6c7494120 (diff) | |
download | rails-2b43620e3c1352028f19550fcde4632d65cbd191.tar.gz rails-2b43620e3c1352028f19550fcde4632d65cbd191.tar.bz2 rails-2b43620e3c1352028f19550fcde4632d65cbd191.zip |
Add :as option to render a collection of partials with a custom local variable name. [#509 state:resolved] [Simon Jefford, Pratik Naik]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 165db916ee..5a5895d9b4 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,11 @@ *Edge* +* Add :as option to render a collection of partials with a custom local variable name. #509 [Simon Jefford, Pratik Naik] + + render :partial => 'other_people', :collection => @people, :as => :person + + This will let you access objects of @people as 'person' local variable inside 'other_people' partial template. + * time_zone_select: support for regexp matching of priority zones. Resolves #195 [Ernie Miller] * Made ActionView::Base#render_file private [Josh Peek] |