- Wraps a field name and returns a simple view function that will render that view
- with a basic context. This assumes that the field name is a ForeignKey to a
- model with a render_to_response method.
+ Given the name of a field on ``self``, accesses the value of
+ that field and treats it as a ``View`` instance. Creates a
+ basic context based on self.get_context() and any extra_context
+ that was passed in, then calls the ``View`` instance's
+ render_to_response() method. This method is meant to be called
+ to return a view function appropriate for urlpatterns.