mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 11:26:56 -08:00
show full timestamps
This commit is contained in:
parent
f847932449
commit
f50b9161b0
2 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@
|
|||
<td><span title="{{ _('Posts can be popular.') }}">{{ '✓'|safe if community.show_popular else '✗'|safe }}</span></td>
|
||||
<td><span title="{{ _('Posts show in the All feed.') }}">{{ '✓'|safe if community.show_all else '✗'|safe }}</span></td>
|
||||
<td><span title="{{ _('Content warning, NSFW or NSFL set for community.') }}">{{ '⚠'|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>
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue