mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-02-03 00:31:25 -08:00
show content_retention in communities list
This commit is contained in:
parent
48dfd6aa0b
commit
638eac45af
1 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
<th>Title</th>
|
||||
<th>Topic</th>
|
||||
<th># Posts</th>
|
||||
<th>Retention</th>
|
||||
<th title="{{ _('Posts show on home page.') }}">Home</th>
|
||||
<th title="{{ _('Posts can be popular.') }}">Popular</th>
|
||||
<th title="{{ _('Posts show in the All feed.') }}">All</th>
|
||||
|
@ -34,6 +35,7 @@
|
|||
<td>{{ render_communityname(community) }}{% if community.banned %} (banned){% endif %}</td>
|
||||
<td>{{ community.topic.name }}</td>
|
||||
<td>{{ community.post_count }}</td>
|
||||
<td>{{ community.content_retention if community.content_retention != -1 }}</td>
|
||||
<th>{{ '✓'|safe if community.show_home else '✗'|safe }}</th>
|
||||
<th>{{ '✓'|safe if community.show_popular else '✗'|safe }}</th>
|
||||
<th>{{ '✓'|safe if community.show_all else '✗'|safe }}</th>
|
||||
|
|
Loading…
Add table
Reference in a new issue