I\'m using active admin for my rails app. I have a customer model which belongs_to a department and also belongs_to a delivery_time.
In my admin folder I have a cus
The columns in the index can be customized this way:
index do |customer| column :department, :sortable => false column "Delivery time", :sortable => false do |cust| cust.delivery_time.strftime("%X") end end
See the ActiveAdmin doc for reference