module Agilibox::FormBackUrl
Public Instance Methods
back_url_tag()
click to toggle source
# File lib/agilibox/form_back_url.rb, line 2 def back_url_tag tag(:input, :type => "hidden", :name => "back_url", :value => (params[:back_url].presence || request.referer), ) end
form_tag_with_body(html_options, content)
click to toggle source
# File lib/agilibox/form_back_url.rb, line 10 def form_tag_with_body(html_options, content) output = form_tag_html(html_options) output.safe_concat(back_url_tag) output << content output.safe_concat("</form>") end