X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f2150a94cf2eb0d518a19769fc7582ea50a5f67b..82cf356d85154057f840c1b3b413f49a65599690:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index ce0c5d67b..f4b900017 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -125,6 +125,18 @@ module ApplicationHelper end end + def friendly_date(date) + content_tag(:span, time_ago_in_words(date), :title => l(date, :format => :friendly)) + end + + def note_author(object, link_options = {}) + if object.author.nil? + h(object.author_name) + else + link_to h(object.author_name), link_options.merge({:controller => "user", :action => "view", :display_name => object.author_name}) + end + end + private def javascript_strings_for_key(key)