Sha256: b946b0e0bcd68ab27921802d35a80d9c8562e26bd21c0da4ccbee9574fe76f7c
Contents?: true
Size: 855 Bytes
Versions: 23
Compression:
Stored size: 855 Bytes
Contents
module Adminpanel class Item < ActiveRecord::Base include Adminpanel::Base belongs_to :product belongs_to :category def self.form_attributes [ { 'product_id' => { 'type' => 'select', 'placeholder' => 'product', 'options' => Proc.new {|object| Adminpanel::Product.all {|o| [o.id, o.name] } } } }, { 'category_id' => { 'type' => 'select', 'placeholder' => 'category', 'options' => Proc.new {|object| Adminpanel::Category.all {|o| [o.id, o.name] } } } }, ] end def self.display_name 'Artículo espacios Mayusculas Y ácento' #singular end # def self.icon # "truck" # fa-{icon} # end end end
Version data entries
23 entries across 23 versions & 1 rubygems