def load_task_list
    @task_list = if @current_project
      @current_project.task_lists.find(params[:id])
    else
      TaskList.find_by_id(params[:id], :conditions => {:project_id => current_user.project_ids})