Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do add a link to an ActiveAdmin view

I have:

ActiveAdmin.register User do
  show :title => :name do     
    attributes_table do
      row :username
      row :email
      row :last_request_at
      row :foo
    end
  end
end

and I want foo just make a <a href="/foo">foo</a> in the view.

So I define:

def foo
  <a href="/foo">foo</a>
end

in the user.rb model. And it displays but the tag is escaped so it's not clickable. Is there a simple way to do this?

like image 395
Andrew Arrow Avatar asked Apr 03 '13 22:04

Andrew Arrow


2 Answers

if you are working with a has many you can loop through the list as well, important is not too forget the .html_safe

row "Bars" do |foo|
  foo.bars.each.map do |bar|
    link_to(bar.title, admin_bar_path(bar)) 
  end.join(', ').html_safe
end
like image 102
hatenine Avatar answered Oct 10 '22 15:10

hatenine


You can try:

row :foo do
  link_to('foo','#')
end

and replace '#' with your route.

like image 33
R Milushev Avatar answered Oct 10 '22 15:10

R Milushev