X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a77b0e45a5aa434e867a767dd26a00c8001ee359..56db9ca2b7e2475cd8025630049fb4a4b824f2d9:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 49608c4a0..9676e6ee1 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -95,4 +95,16 @@ module ApplicationHelper I18n.t("html.dir") 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? + "" + else + link_to h(object.author.display_name), link_options.merge({:controller => "user", :action => "view", :display_name => object.author.display_name}) + end + end end