diff options
author | Vitaly Takmazov | 2019-03-01 19:49:10 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-03-01 19:49:10 +0300 |
commit | ece568a4bcd0ff8a2f84c974a458a2f498fd135d (patch) | |
tree | 58282836e2bc3bcc29f72630bdfba76202730909 /src/main/resources/templates/views/partial/message.html | |
parent | aabad2347aaf52e225541cb954e98ab509e9aa2f (diff) |
Message::timestamp -> Message::created
Diffstat (limited to 'src/main/resources/templates/views/partial/message.html')
-rw-r--r-- | src/main/resources/templates/views/partial/message.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/resources/templates/views/partial/message.html b/src/main/resources/templates/views/partial/message.html index b1d27ae5..bb36b25e 100644 --- a/src/main/resources/templates/views/partial/message.html +++ b/src/main/resources/templates/views/partial/message.html @@ -8,9 +8,9 @@ </div> <div class="msg-ts"> <a href="/{{ msg.user.name }}/{{ msg.mid }}"> - <time datetime="{{ msg.timestamp | timestamp | date('yyyy-MM-dd HH:mm:ss') }}Z" - title="{{ msg.timestamp | timestamp | date('yyyy-MM-dd HH:mm:ss') }} GMT"> - {{ msg.timestamp | prettyTime }} + <time datetime="{{ msg.created | timestamp | date('yyyy-MM-dd HH:mm:ss') }}Z" + title="{{ msg.created | timestamp | date('yyyy-MM-dd HH:mm:ss') }} GMT"> + {{ msg.created | prettyTime }} </time> </a> </div> |