Active Admin is a Ruby on Rails plugin for generating administration style interfaces. It abstracts common business application patterns to make it simple for developers to implement beautiful and elegant interfaces with very little effort.

learn more… | top users | synonyms

0
votes
0answers
7 views

Activeadmin, page_action and cancan rules

How to manage access to custom_page actions? I have this code: ActiveAdmin.register_page 'Import' do menu false content do panel t('views.import.title') do render 'form' end end ...
0
votes
1answer
13 views

Active Admin accessing two models

I would like to access the data from the Profile using Active Admin. Profile has this model: class Profile < ActiveRecord::Base attr_accessible :address, :name, :phone belongs_to :user end ...
0
votes
0answers
18 views

Separating attr_accessible using two different models with the same table

I want to separate validation and attr_accessible using two different models, which refers to the same table and includes the same mixin. require 'rfc822' class UserForAdmin < ActiveRecord::Base ...
0
votes
1answer
27 views

ActiveAdmin and Devise - skip_confirmation! on create action

I want to call user.skip_confirmation while his account is created by admin in admin panel. I want user to confirm his account in further steps of registration process, but not on create. The only ...
0
votes
1answer
10 views

Activer admin - user logout and admin as well

I use device and omniauth to login in my site using some provider as twitter and active admin to manage the user.I have two tabs on browser one with twitter user and another with admin, when i logout ...
1
vote
2answers
35 views

Showing index to current user, only their information

I have a model Order. In the index, I want the current_user to see the index with only their orders. Order belongs_to :admin_user. AdminUser has_many :orders. I am using activeadmin in my app, if that ...
0
votes
1answer
14 views

active_admin form and displaying images

I have active_admin form for my Gallery model: form do |f| f.inputs "Gallery" do f.input :title f.input :description f.input :file end f.has_many :images do |ff| ff.input :file ...
0
votes
0answers
15 views

Rspec Capybara ActiveAdmin error rendering nested models paths

I have a capybara test in order to test the creation of a nested model For example I have these two resources: ActiveAdmin.register Campaign do ActiveAdmin.register PublisherCampaign do ...
1
vote
1answer
30 views

Active Admin Custom Method Parameter

In ActiveAdmin I'm trying to get a value from a form when I press an action_item on the dashboard, but I'm not sure exactly how to do that this is what I have so far, and it runs, but I would like to ...
2
votes
1answer
26 views

Rails: Active Admin Association Image column

I am new to ruby on rails and have just installed active admin and was trying to customize the views. I have a product and image table. Each image belongs to one product. Now I want to display a ...
0
votes
2answers
50 views

Filter by association in ruby on rails using active admin gem

I have two models: Login and Account class Login belongs_to :account attr_accessible: first_name, primary_admin # primary_admin is boolean end class Account has_many: logins def primary_admin ...
1
vote
0answers
34 views

Active admin custom filter with active record relations

Here is my problem: I have three models: Taxons class Taxon < ActiveRecord::Base has_and_belongs_to_many :categories, :uniq => true Categories class Category < ActiveRecord::Base ...
0
votes
1answer
26 views

active_admin and adding multiple images to gallery

I'm using active_admin and carrierwave gems. Have two simple models: class Image < ActiveRecord::Base attr_accessible :gallery_id, :file belongs_to :gallery mount_uploader :file, ...
0
votes
0answers
15 views

ActiveAdmin password reset routing error

I'm using ActiveAdmin 0.6.0 with Rails 3.2.13, and password resets for admin users are working and generating emails, but they're redirecting to "/session/new.admin_user" which doesn't exist. I see ...
0
votes
2answers
19 views

ActiveAdmin - generating drop down list in form for has_many/belongs_to relationship

I have Gallery and Image models with has_many/belongs_to relationship. My admin_active form for Image looks like this: form do |f| f.inputs "Image Details" do f.input :gallery_id f.input ...
0
votes
1answer
25 views

ActiveAdmin - Edit Devise user without changing password

I try to do that. Unfortunately I have problems with overriding update and I don't know how to do that correctly. The way I do that in another place is: if params[:user][:password].blank? ...
0
votes
1answer
32 views

How to add the language selector in the ckeditor tool

I've integrated the ckeditor gem for rails in the activeadmin gem. So far it is working good but I want to include the language selector which I've seen in the demo of the ckeditor. But I've not ...
0
votes
1answer
20 views

How can I read config variables from Active Admin?

I have read documentation I did not find how to do this. I need to get default_namespace setting. Also if you could explain the process of find that method would be great.
0
votes
0answers
11 views

need help connecting helper to controller undefined method `order_priority_path'

I have an order_priorities controller and a orders_helper. I am trying to put the colors you see in the helper, in this controller to give my app some nice color(example). I am getting this error and ...
1
vote
0answers
18 views

Using the ActiveAdmin Submit button in relation to attr_accessible

I'm currently changing around how my ActiveAdmin interface works so that it integrates both attr_accessible items and CanCan. In some of my models I have a specific controller action for the Submit ...
0
votes
0answers
24 views

Getting NoMethodError in Active Admin with build_menu command

I'm customizing a menu in Active Admin. Per the documentation here http://activeadmin.info/docs/2-resource-customization.html#customize_the_menu, I've put this code in the active_admin.rb ...
0
votes
0answers
19 views

Active Admin calling original and overriden create action

I am seeing some odd behaviour when trying to override the create action on an Active Admin resource. My reason for overriding the action is that I want to alter the request params slightly first. ...
0
votes
1answer
15 views

Truncate data in ActiveAdmin index page

Is it possible to truncate the data displayed for an attribute in an ActiveAdmin index page? One of my attributes contains a lot of text so it makes the layout of the table on the index page hard to ...
0
votes
0answers
23 views

Rails Active Admin PUT not updating boolean values (SQL Server)

I switched to SQL Server on production, and realized that Active Admin PUT calls aren't updating some boolean values in my database. The PUT calls will return a 302, and not update the record even ...
1
vote
2answers
50 views

Two pages for the same resource - ActiveAdmin

Currently I have User model, which is registered in user.rb as a new resource for ActiveAdmin. Generated page displays all users with scopes (all/journalists/startup_employees). Now I want to create ...
0
votes
1answer
33 views

Mass-assigning attributes in ActiveAdmin

I try to create new user using Active Admin and I get: Can't mass-assign protected attributes: user_id, approved_at_date, approved_at_time_hour, approved_at_time_minute, expire_at_date, ...
0
votes
2answers
37 views

remove delete link only in activeadmin show page

I am working on the active admin gem. I just want to hide the delete link only from show page. So, I added the below code ActiveAdmin.register ArticlesSkill do menu :parent => "ReadUp" actions ...
0
votes
1answer
71 views

ActiveAdmin: Can't mass-assign protected attributes: email, password, password_confirmation

I am having a Rails with ActiveAdmin with Devise for Authentication. I have AdminUser and User models so that User model doesn't have to care about admin. However, I cannot create/edit neither ...
1
vote
1answer
39 views

How to write filters for methods (not fields) in Active Admin?

I have an Active Admin index page for some resource. ActiveAdmin.register Request do index do column :created_at column :content column "Approved", :approved? default_actions end ...
1
vote
2answers
39 views

How to get the current user that is logged in via active admin?

I would like to know how to get the current user that is logged in via the active admin GUI? Homepage: http://www.activeadmin.info/ Thanks in advance MODEL admin_user.rb class AdminUser < ...
0
votes
1answer
23 views

Paper clip - stored image path inside active admin

All the files uploaded by paper clip are beeing stored inside public/system/images/pictures/ and lots of 000/000/002 folders and etc. I Want to use image_tag inside one active admin's view to print ...
-1
votes
0answers
21 views

Rails show active/set filter in activeadmin

I've question about filters in activeadmin. Example: you've got Color, Brand, Style. You choose Color: yellow, Brand: Stackoverflow, Style is unfilled/empty. When you apply filters, you've got what ...
0
votes
1answer
83 views

Multiple File Upload ActiveAdmin Integration

I'm trying to create a form that has 3 models (1 for the actual form, 1 for other entries and another for the uploaded archives). I want to use jQuery File Upload gem to upload my PDFs to the server, ...
1
vote
0answers
5 views

Active Admin: how to set filter label dynamically

I tried this: filter :something, :label => lambda{ condition?(current_active_admin_user) ? "option1" : "option2" } but it does not work. But the same lambda code works for the menu.
2
votes
1answer
62 views

Using HABTM or Has_many through with Active Admin

I've read quite a few of the posts on using active admin with has_many through association but I'm not getting the desired results. Essentially I have 2 models "Conferences" & "Accounts". I need ...
0
votes
1answer
34 views

ActiveAdmin Form with 2 models (belongs_to and has_many) don't work

I have the following code form my passport_visas.rb model ActiveAdmin.register PassportVisa do menu :label => "Visas" form :partial => "form" index :title => "Visas" end And this ...
1
vote
0answers
44 views

Active admin install with Rails 4

I got this error when installing active admin on Rails 4 http://pastie.org/7814514 I follow this instruction: http://www.activeadmin.info/documentation.html Anyone help please.
0
votes
1answer
32 views

Active Admin view to PDF

I'm starting to develop in Ruby on Rails recently, therefore I consider myself beginner. I'm testing the Active Admin gem ( http://activeadmin.info/ ) and I found a problem when export a view to PDF. ...
0
votes
1answer
29 views

ActiveAdmin - batch action for filtering

I have a collection of related models: A structure has_many residues and a residue has_many atoms. I've setup my ActiveAdmin using the belongs_to keyword, e.g. ActiveAdmin.register Residue do ...
0
votes
0answers
41 views

active admin routes and I18n

I am trying to find a way to change locale in an Active Admin (0.6.0) app I made. I have two links, one for each language that sets properly the locale parameter in the path. I do it this way in my ...
0
votes
1answer
40 views

Active Admin has_many with set number of nested relations

I'm using Active Admin and I have a one-to-many relationship between two models: class WeeklyMenu < ActiveRecord::Base has_many :menu_items attr_accessible :menu_items ...
2
votes
2answers
85 views

When I click create in activeadmin, I get a mass assignment error

So i have active admin. I have a customer model and a address model. I have address nested with in customer. When i click create customer, I get a mass assignment error. error ...
0
votes
1answer
30 views

Activeadmin, polymorphic relationship and nested attributes

I have 2 models. There are Provider and Delivery. Model Note - polymorphic to they (belongs_to). Model Provider looks like this: class Provider < ActiveRecord::Base attr_accessible :name, ...
1
vote
1answer
76 views

yet another Can't mass-assign protected attributes: address post

Preface: I am trying to create a customer for that has a nested addresses form. upon clicking create customer i get this error. ActiveModel::MassAssignmentSecurity::Error in ...
1
vote
2answers
50 views

missing partial when putting a model in another model

I have never seen an error like this, so I don't even know what information of my app to share with you. I am putting an 'address' model inside a 'customer model'. Here is the error. (edit)I am using ...
0
votes
1answer
22 views

Active_admin NoMethodError

I am using active_admin to generate an admin page on my rails app. I have had it for like a week, but suddenly today when I click the link emoticon which is a resource for the admin, I get this error ...
0
votes
2answers
30 views

add_index in schema for an existing table

I am following an open source app as a guide for my app. A little background, I am trying to nest a form in active admin. I am assuming that this is part of their nested form. OpenSource Schema ...
0
votes
0answers
52 views

Activeadmin and metasearch. How to include association in search result?

I developing autocomplete feature. In model (GrossPrice) I added this one: search_method :item_name Item - association of GrossPrice model (belongs_to). When I trying to search by ...
0
votes
1answer
57 views

Rails + Active Admin: Display name

I am using Active Admin with Ruby on Rails and I am having an issue with the way that some models are shown in the panel. Taking the class User as an example, if I do not define any method to display ...
0
votes
1answer
27 views

datepicker in filters portion not show with created_at and updated_at fields using Active Admin Rails

I'm using Active admin and datepicker in filters portion(index page) not show with created_at and updated_at fields. I search enough and not find solution in any place. filter :created_at ,:as ...

1 2 3 4 5 19