Is there (an easy) way to create multiple forms for one model in activeadmin?
            Asked
            
        
        
            Active
            
        
            Viewed 1,744 times
        
    2
            
            
        - 
                    Did you try this? Same way as creating an Index page. http://stackoverflow.com/questions/16546502/two-pages-for-the-same-resource-activeadmin/16559759#16559759 – James Mar 31 '14 at 03:06
1 Answers
1
            One solution is to include ActiveModel::ModelIn your modelas discussed here.
 
    
    
        Community
        
- 1
- 1
 
    
    
        user3387580
        
- 40
- 3
- 
                    
- 
                    Yes! That is correct! In fact, you can include ActiveModel::Model in your any Ruby class – user3387580 Mar 13 '14 at 12:28
- 
                    it seems that it might work, but i am kinda stuck in adding custom action views in actionadmin. anyway thank you for your answer, i looked at that question (which is in the link yu gave me) before, didn't think it might work for me back then. – Javkhlan Shirendev Mar 14 '14 at 03:45
