class ChouetteController < BreadcrumbController include ApplicationHelper include BreadcrumbHelper before_filter :switch_referential layout "without_sidebar", :only => [:edit, :new, :update, :create] def switch_referential Apartment::Database.switch(referential.slug) end def referential @referential ||= current_organisation.referentials.find params[:referential_id] end end