module C80Brands module AppHelper def brands_list(h3_title=' ') if h3_title == ' ' h3_title = 'Бренды' end list = Bbrand.all render :partial => 'c80_brands/shared/brands_list', :locals => { list: list, h3_title: h3_title } end end end