X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/52c688f55aa9b1a97e869a3b3a972056e3063cb5..12c1d5e6c05813a0697724277b4d8529a1a7c240:/app/helpers/note_helper.rb diff --git a/app/helpers/note_helper.rb b/app/helpers/note_helper.rb index 7e52937a0..809480a04 100644 --- a/app/helpers/note_helper.rb +++ b/app/helpers/note_helper.rb @@ -23,4 +23,9 @@ module NoteHelper link_to h(author.display_name), link_options.merge(:controller => "/users", :action => "show", :display_name => author.display_name) end end + + def disappear_in(note) + date = note.freshly_closed_until + tag.span(distance_of_time_in_words(date, Time.now.utc), :title => l(date, :format => :friendly)) + end end