forked from mirrors/bookwyrm
Fixes merge regression for localized timestamps
This commit is contained in:
parent
afde94d4c2
commit
5fc1e3f2fe
1 changed files with 1 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
|||
{% extends 'components/card.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% load bookwyrm_tags %}
|
||||
{% load humanize %}
|
||||
|
||||
|
@ -61,7 +60,7 @@
|
|||
</div>
|
||||
|
||||
<div class="card-footer-item">
|
||||
<a href="{{ status.remote_id }}">{{ status.published_date | post_date }}</a>
|
||||
<a href="{{ status.remote_id }}">{{ status.published_date|timesince }}</a>
|
||||
</div>
|
||||
{% if not moderation_mode %}
|
||||
<div class="card-footer-item">
|
||||
|
|
Loading…
Reference in a new issue