about summary refs log tree commit diff
path: root/app/views/admin/accounts/show.html.haml
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-08-26 00:21:00 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-25 17:21:00 +0200
commit00f9f16f94feeaf2fae9a5a1a7bcb3a06b86a036 (patch)
tree62866067e10b3554efd8af4bc06e9b1538c51d07 /app/views/admin/accounts/show.html.haml
parent18f69fb964f73dce1e921b3fd1a391167d638e8a (diff)
Change timezone of the datetime to what browser specifies (#4688)
Diffstat (limited to 'app/views/admin/accounts/show.html.haml')
-rw-r--r--app/views/admin/accounts/show.html.haml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml
index 18bcd5e8e..85841d7a1 100644
--- a/app/views/admin/accounts/show.html.haml
+++ b/app/views/admin/accounts/show.html.haml
@@ -24,7 +24,8 @@
         %th= t('admin.accounts.most_recent_activity')
         %td
           - if @account.user_current_sign_in_at
-            = l @account.user_current_sign_in_at
+            %time.formatted{ datetime: @account.user_current_sign_in_at.iso8601, title: l(@account.user_current_sign_in_at) }
+              = l @account.user_current_sign_in_at
           - else
             Never
     - else
@@ -43,7 +44,8 @@
           %th= t('admin.accounts.push_subscription_expires')
           %td
             - if @account.subscribed?
-              = l @account.subscription_expires_at
+              %time.formatted{ datetime: account.subscription_expires_at.iso8601, title: l(account.subscription_expires_at) }
+                = l @account.subscription_expires_at
             - else
               = t('admin.accounts.not_subscribed')
         %tr