モバイル版のユーザーページに最終ログイン日時を表示するように

This commit is contained in:
syuilo 2017-08-30 11:45:17 +09:00
parent 4c0fbaedfa
commit d86859b1ce
4 changed files with 11 additions and 1 deletions

View file

@ -4,7 +4,8 @@ ChangeLog (Release Notes)
unreleased
----------
* New: モバイル版のアクティビティチャートを変更
* New: モバイル版のユーザーページのアクティビティチャートを変更
* New: モバイル版のユーザーページに最終ログイン日時を表示するように
2503 (2017/08/30)
-----------------

View file

@ -480,6 +480,7 @@ mobile:
recent-posts: "Recent posts"
images: "Images"
activity: "Activity"
last-used-at: "Latest used at"
mk-user-overview-posts:
loading: "Loading"

View file

@ -481,6 +481,7 @@ mobile:
recent-posts: "最近の投稿"
images: "画像"
activity: "アクティビティ"
last-used-at: "最終ログイン"
mk-user-overview-posts:
loading: "読み込み中"

View file

@ -233,6 +233,7 @@
<mk-weekly-activity-chart user={ user }/>
</div>
</section>
<p>%i18n:mobile.tags.mk-user-overview.last-used-at%: <b><mk-time time={ user.last_used_at }/></b></p>
<style>
:scope
display block
@ -263,6 +264,12 @@
> div
padding 8px
> p
display block
margin 16px
text-align center
color #cad2da
</style>
<script>
this.user = this.opts.user;