我正在使用Rails4和Ruby2.0
我有一个模型(比如blog_post_,我正在使用acts_as_taggable(gem)。我也使用activeadmin gem来轻松编辑/删除生产中的一些记录。
对于blog_post模型,我可以在活动的管理编辑页面中看到它的所有属性[例如:标题,作者等],但是我没有看到与帖子相关联的标签(例如帖子的标签是:科技,商业,食品等)
如何查看和编辑给定帖子页面中的标签:
eg from this page http://localhost:3000/admin/posts/37/edit
我希望能够在该帖子上编辑/添加标签。
答案 0 :(得分:0)
您需要自定义节目和新/编辑页面:
# for new/edit pages
form do |f|
# existing content
f.input :tag_list # this will display the tag list column
end
# for show pages
show do
# existing content
row :tag_list
end
ActiveAdmin文档的相关部分: