0
我正在使用rails管理員爲我的應用程序。標籤欄管理員定製
在rails_admin.rb
,我有這樣的事情
config.model Serve do
exclude_fields :list_id
end
然後在我的模型serve.rb
,我在管理面板像這樣
class Serve < ActiveRecord::Base
has_and_belongs_to_many :lists
mount_uploader :servimage, PhotoUploader
end
現在,而不是標籤的即成 ,我想將它重命名爲現在發送
所以我的問題是,要做到這一點,我必須改變模式?或者我該怎麼做?
請幫忙。