I am using Rails4 and Ruby2.0
I have a model (say blog_post_ for which I am using acts_as_taggable (gem). I am also using the activeadmin gem to easily edit/delete some records in production.
For the blog_post model I can see all its attributes [ex : title, author etc] in the active admin edit page, however I don't see the tags associated with the post (eg tags for a post are: tech, business, food etc)
How can I view and edit the tags from a given posts page :
eg from this page http://localhost:3000/admin/posts/37/edit
I want to be able to edit/add the tags on that post.