You have to create a subfolder inside your controller/ directory, and the same in your views/ directory.
Your controller file should look like
module Company
class SportsController < ApplicationController
def index
end
end
end
...or
class Company::SportsController < ApplicationController
def index
end
end
You can also call your partials this way
render :template => "company/sports/index"
Then in routes.rb
namespace :company do
resources :sports
end
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…