Created
September 14, 2012 13:09
-
-
Save alexandru-calinoiu/3721819 to your computer and use it in GitHub Desktop.
Active admin company
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ActiveAdmin.register Company do | |
| index do | |
| column "#", :id | |
| column :name, :sortable => :"addresses.name" | |
| column "Owner", :sortable => :"users.first_name" do |company| | |
| company.owner.name | |
| end | |
| column "City", :print_city | |
| column "State", :print_state | |
| column :plan | |
| column "Trial status" do |company| | |
| CompanyPresenter.new(company).trial_status_human | |
| end | |
| column :created_at | |
| default_actions | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment