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 19:39:26 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-26 12:39:26 +0200
commit3ac7b353f8ba74bce9e20974bcc1832930424ef2 (patch)
tree9da69134090043b65ca3144763494172851202d4 /app/views/admin/accounts/show.html.haml
parent21bb4a6c3b21f3d2a60d2ebf6475fc0b0e9fee5d (diff)
Fix missing at-sign (regression from #4688) (#4705)
Diffstat (limited to 'app/views/admin/accounts/show.html.haml')
-rw-r--r--app/views/admin/accounts/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml
index 85841d7a1..dc2f16cc9 100644
--- a/app/views/admin/accounts/show.html.haml
+++ b/app/views/admin/accounts/show.html.haml
@@ -44,7 +44,7 @@
           %th= t('admin.accounts.push_subscription_expires')
           %td
             - if @account.subscribed?
-              %time.formatted{ datetime: account.subscription_expires_at.iso8601, title: 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')