class TermsController < ApplicationController

  def list
    @terms = Term.find :all
  end

  def define 
    term = Term.find(params[:id])
    render :partial => 'definition', :locals => { :term => term }
  end
end