]> git.openstreetmap.org Git - rails.git/commitdiff
Improve display of user block timestamps
authorTom Hughes <tom@compton.nu>
Thu, 25 Jun 2015 16:44:20 +0000 (17:44 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 25 Jun 2015 16:44:20 +0000 (17:44 +0100)
Display the creation time, as a friendly date with a tooltip for
the exact time, and add a tooltip to the expiry time.

Fixes #923 and #996

app/helpers/user_blocks_helper.rb
app/views/user_blocks/show.html.erb
config/locales/en.yml

index b6d4a9a9fe403e8bd9dbf1691f1e416cb2df5865..282d9164aa2cc046842b23939a8a6db557696fbe 100644 (file)
@@ -7,14 +7,14 @@ module UserBlocksHelper
       if block.needs_view?
         I18n.t("user_block.helper.until_login")
       else
       if block.needs_view?
         I18n.t("user_block.helper.until_login")
       else
-        I18n.t("user_block.helper.time_future", :time => distance_of_time_in_words_to_now(block.ends_at))
+        I18n.t("user_block.helper.time_future", :time => friendly_date(block.ends_at)).html_safe
       end
     else
       # the max of the last update time or the ends_at time is when this block finished
       # either because the user viewed the block (updated_at) or it expired or was
       # revoked (ends_at)
       last_time = [block.ends_at, block.updated_at].max
       end
     else
       # the max of the last update time or the ends_at time is when this block finished
       # either because the user viewed the block (updated_at) or it expired or was
       # revoked (ends_at)
       last_time = [block.ends_at, block.updated_at].max
-      I18n.t("user_block.helper.time_past", :time => distance_of_time_in_words_to_now(last_time))
+      I18n.t("user_block.helper.time_past", :time => friendly_date(last_time)).html_safe
     end
   end
 end
     end
   end
 end
index e882e6e3b61425241a5564f40e93e627e5488985..ccd6df06faf5b3bccee26756f5175f69cf6d7c48 100644 (file)
@@ -30,6 +30,8 @@
 </p>
 <% end %>
 
 </p>
 <% end %>
 
+<p><b><%= t'user_block.show.created' %></b>: <%= raw t'user_block.show.ago', :time => friendly_date(@user_block.created_at) %></p>
+
 <p><b><%= t'user_block.show.status' %></b>: <%= block_status(@user_block) %></p>
 
 <p><b><%= t'user_block.show.reason' %></b></p>
 <p><b><%= t'user_block.show.status' %></b>: <%= block_status(@user_block) %></p>
 
 <p><b><%= t'user_block.show.reason' %></b></p>
index 6c5c23da014a00201c9f26073a8e67999f0bdd82..0a6f108e7ee4def2d88f75f84a68418304bb976c 100644 (file)
@@ -2112,6 +2112,8 @@ en:
       heading: "%{block_on} blocked by %{block_by}"
       time_future: "Ends in %{time}"
       time_past: "Ended %{time} ago"
       heading: "%{block_on} blocked by %{block_by}"
       time_future: "Ends in %{time}"
       time_past: "Ended %{time} ago"
+      created: "Created"
+      ago: "%{time} ago"
       status: "Status"
       show: "Show"
       edit: "Edit"
       status: "Status"
       show: "Show"
       edit: "Edit"