44
votes

I am learning Ruby and Rails.

I have a Ruby on Rails project that tracks jobs a server is running. Right now, when I manually create a new job, it announces:

flash[:notice] = "Created job job number #{update.id}."

I would like to turn the #{update.id} into a link to the job on the job list.

The URL for going to the job is jobs/list?job=1234 where 1234 is the update.id that is displayed in the flash notice.

Is it possible to put a link into a flash[:notice] statement? Or do I need to re-work how this message is being displayed in order to turn it into a link?

8
If you've tried all the methods below and it's still not working... You need to mark the message as safe (with html_safe) when you render it, not when you store the message!Dennis

8 Answers

43
votes

Don't forget to add .html_safe at the end of the notice, if you're using Rails3. So it would say flash[:notice] = "Your message".html_safe

39
votes

The @template instance variable is no longer available in Rails 3.

Instead you can use this in your controller:

flash[:notice] = "Successfully created #{view_context.link_to('product', @product)}.".html_safe

Hope this helps :)

35
votes

I may be missing something obvious, but you should just be able to do

flash[:notice] = %Q[Created job number <a href="/jobs/list?job=#{update.id}">#{update.id}</a>]

and then just make sure you're not escaping the content of the flash when you display it in your view.

16
votes

As nas commented, link_to is not available from your controller unless you include the appropriate helper module, but url_for is. Therefore I'd do pretty much what Emily said except use url_for instead of hardcoding a URL.

e.g. if a job were defined as a resource in your routes:

link = "<a href=\"#{url_for(update)}\">#{update.id}</a>"    
flash[:notice] = "Created job number #{link}"
9
votes

The selected answer didn't work for me. But the answer from this post worked. I'm using Rails 4.2.4 by the way. With guidance from the answer I linked, here's how I did it:

View

<% flash.each do |name, msg| %>
  <div class="alert alert-<%= name %>">
    <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
    <div id="flash_<%= name %>"><%= sanitize(msg) %></div>
  </div>
<% end %>

Controller

flash[:success] = "Blah blah. #{view_context.link_to('Click this link', '/url/here')}"

The magic is the sanitize method.

I didn't need to use .html_safe as well.

5
votes

Building on Dorian's answer, here's an internationalized flash with a link in it:

flash[:notice] = t('success', go: view_context.link_to(t('product'), @product)).html_safe

Where your translation (e.g. a YAML file) might contain:

en:
  success: "Successfully created a %{go}"
  product: "product"
it:
  success: "%{go} creato con successo"
  product: "Prodotto"
4
votes

You can use an alias in your controller to the link_to function, or the RailsCast recipe:

"Created job job number #{@template.link_to update.id, 
  :controller => 'jobs', :action => 'list', :job => update.id}."

http://railscasts.com/episodes/132-helpers-outside-views

2
votes

You can always use the Rails link_to helper:

flash[:notice] = "Created job job number #{link_to update.id, :controller => 'jobs', :action => 'list', :job => update.id}."