I am in the beginning stages of learning ruby and RoR.
I have a Ruby on Rails project that tracks jobs a server is running. Right now, when you 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.
So, 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?