class MainController < ApplicationController def index # get the list of teams @midwest = Team.find_all_by_conference("midwest") @west = Team.find_all_by_conference("west") @east = Team.find_all_by_conference("east") @south = Team.find_all_by_conference("south") end end