# File app/controllers/proposals_controller.rb, line 148
  def by_author
    @author = Person.find_by_id(params[:author_id].to_i)
    unless @author
      redirect_to :action => 'list'
      flash[:error] << _('No author specified - rendering general list')
      return false
    end

    @props = @author.proposals.
      paginate(:page => params[:page],
               :per_page => 20,
               :include => [:people, :conference, :prop_type, :prop_status],
               :order => 'title, authorships.position')
  end