show full timestamps

This commit is contained in:
Hendrik L 2025-01-02 16:39:02 +01:00
parent f847932449
commit f50b9161b0
2 changed files with 2 additions and 2 deletions

View file

@ -100,7 +100,7 @@
<td><span title="{{ _('Posts can be popular.') }}">{{ '&check;'|safe if community.show_popular else '&cross;'|safe }}</span></td>
<td><span title="{{ _('Posts show in the All feed.') }}">{{ '&check;'|safe if community.show_all else '&cross;'|safe }}</span></td>
<td><span title="{{ _('Content warning, NSFW or NSFL set for community.') }}">{{ '&#x26A0;'|safe if community.nsfw or community.nsfl or community.content_warning else ''|safe }}</span></td>
<td><span title="{{ _('Last activity') }}">{{ arrow.get(community.last_active).humanize(locale=locale) }}</span></td>
<td><span title="{{ _('Last activity') }}: {{ community.last_active }}">{{ arrow.get(community.last_active).humanize(locale=locale) }}</span></td>
<td><a href="{{ url_for('admin.admin_community_edit', community_id=community.id) }}">{{ _('Edit') }}</a>,
<a href="{{ url_for('community.community_moderate', actor=community.link()) }}">{{ _('Moderate') }}</a>,
<a href="{{ url_for('admin.admin_community_delete', community_id=community.id) }}" class="confirm_first">{{ _('Delete') }}</a>

View file

@ -93,7 +93,7 @@
<td><span title="{{ _('Post Replies') }}">{{ instance.post_replies_count() }}</span></td>
<td><span title="{{ _('Vote Weight') }}">{{ instance.vote_weight }}</span></td>
<td><span title="{{ _('Trusted') }}">{{ _('Yes') if instance.trusted }}</span></td>
<td><span title="{{ _('Last Seen') }}">{{ arrow.get(instance.last_seen).humanize(locale=locale) if instance.last_seen }}</span></td>
<td><span title="{{ _('Last Seen') }}: {{ instance.last_seen }}">{{ arrow.get(instance.last_seen).humanize(locale=locale) if instance.last_seen }}</span></td>
<td><span title="{{ _('Sent') }}">{{ arrow.get(instance.last_successful_send).humanize(locale=locale) if instance.last_successful_send }}</span></td>
<td><span title="{{ _('Failed') }}">{{ instance.failures }}</span></td>
{% if instance.gone_forever %}