Reputation: 1220
If I have a page with the following URL: http://www.mywebsite.com/users/profile/edit
How would I display a partial ONLY if the user is on that particular page?
Someone suggested this code, but the syntax confuses me and I was hoping for something more specific.
<%= render :partial => "foo/bar" if @conditions %>
Upvotes: 4
Views: 3119
Reputation: 211590
Usually you put the call to display the partial in the view for that action. If you have a view used by more than one, the standard procedure is as you describe where @conditions
represents some arbitrary conditions. It could be like this:
<%= render(:partial => 'example') if (params[:action] == 'edit') %>
Upvotes: 14