Commenting out blocks in Rails views (ERB files)
This works for .html.erb files: ruby <% begin %> <% if current_user.is_super_admin? %> <p> this block will be commented out</p> <% end %> <% end %> ‘causing a section to not be rendered’ , you would want to do <% if false %> .. <% end %>