class <%= “#{model.singularize.camelcase}Presenter” %> < ApplicationPresenter

<%- if options.doc? -%>
  # Don't worry about the initialize method, it's already handled for you.

  # You can now pass in an instance of <%= model.singularize.camelcase %> when you initialize this presenter
  # and access it with the helper method: subject

  # Write methods for this presenter in here using the helper method
<%- end -%>

end