ActionView::TemplateError (can't convert nil into String) on line #1
of accounts/_createturing.rhtml:
1: <%= image_tag( createturing ) %>
By default when looking at the partial createturing rails will set the
local variable createturing to the value of @createturing which would
seem to be nil.
You however don't want to use the local variable createturing but the
method of the same name. You can force a method call by saying
createturing() instead of createturing