aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/layouts_and_rendering.md
diff options
context:
space:
mode:
authorerik <erikecoologic@gmail.com>2014-08-29 15:31:38 +1000
committererik <erikecoologic@gmail.com>2014-08-29 16:07:56 +1000
commit8caf16a281260fedb0677c85047469e99c48da94 (patch)
treef26dbcbfee8c11b3b57f179ffddcfc26a1199d26 /guides/source/layouts_and_rendering.md
parent0cc22f4b86e547880fb8f444b15f19bdb38c7bc9 (diff)
downloadrails-8caf16a281260fedb0677c85047469e99c48da94.tar.gz
rails-8caf16a281260fedb0677c85047469e99c48da94.tar.bz2
rails-8caf16a281260fedb0677c85047469e99c48da94.zip
2.2.14.5 Template Inheritance (new in guide, feature in since 3.1)
Diffstat (limited to 'guides/source/layouts_and_rendering.md')
-rw-r--r--guides/source/layouts_and_rendering.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md
index 60571750a1..00a3ae7dcc 100644
--- a/guides/source/layouts_and_rendering.md
+++ b/guides/source/layouts_and_rendering.md
@@ -547,6 +547,42 @@ In this application:
* `OldArticlesController#show` will use no layout at all
* `OldArticlesController#index` will use the `old` layout
+##### Template Inheritance
+
+Similarly to the Layout Inheritance logic, if a template or partial is not found in the conventional path, the controller will look for a template or partial to render in its inheritance chain. For example:
+
+```ruby
+# in app/controllers/application_controller
+class ApplicationController < ActionController::Base
+end
+
+# in app/controllers/admin_controller
+class AdminController < ApplicationController
+end
+
+# in app/controllers/admin/products_controller
+class Admin::ProductsController < AdminController
+ def index
+ end
+end
+```
+
+The lookup order for a `admin/products#index` action will be:
+
+* `app/views/admin/products/`
+* `app/views/admin/`
+* `app/views/application/`
+
+This makes `app/views/application/` a great place for your shared partials, which can then be rendered in your ERb as such:
+
+```erb
+<%# app/views/admin/products/index.html.erb %>
+<%= render @products || "empty_list" %>
+
+<%# app/views/application/_empty_list.html.erb %>
+There are no items in this list <em>yet</em>.
+```
+
#### Avoiding Double Render Errors
Sooner or later, most Rails developers will see the error message "Can only render or redirect once per action". While this is annoying, it's relatively easy to fix. Usually it happens because of a fundamental misunderstanding of the way that `render` works.