I am completely new to ActiveAdmin and RoR, and I cannot figure out how to change the visible value of the drop-down lists in the has_many association.
Fillup Model
class Fillup < ActiveRecord::Base // key is car_id:integer belongs_to :car end
Car model
class Car < ActiveRecord::Base validates :description, :presence => true key is fillup_id:integer has_many :fillups end
What is he showing now:
He currently shows im, suggesting an encoded link to the Car assigned to him. 
What I need to show:
I need this to show the description that is defined as description:string in the Car Model . 
source share