mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
22 lines
No EOL
1.5 KiB
HTML
22 lines
No EOL
1.5 KiB
HTML
<div class="btn-group mt-3 mb-2 flex-wrap">
|
|
{% if community.is_owner() or current_user.is_admin() %}
|
|
<a href="{{ url_for('community.community_edit', community_id=community.id) }}" class="btn {{ 'btn-primary' if current == '' or current == 'edit_settings' else 'btn-outline-secondary' }}" rel="nofollow noindex">
|
|
{{ _('Settings') }}
|
|
</a>
|
|
<a href="{{ url_for('community.community_mod_list', community_id=community.id) }}" class="btn {{ 'btn-primary' if current == 'moderators' else 'btn-outline-secondary' }}" rel="nofollow noindex">
|
|
{{ _('Moderators') }}
|
|
</a>
|
|
{% endif %}
|
|
<a href="/community/{{ community.link() }}/moderate" aria-label="{{ _('Sort by hot') }}" class="btn {{ 'btn-primary' if current == '' or current == 'reports' else 'btn-outline-secondary' }}" rel="nofollow noindex">
|
|
{{ _('Reports') }}
|
|
</a>
|
|
<a href="/community/{{ community.link() }}/moderate/subscribers" class="btn {{ 'btn-primary' if current == 'subscribers' else 'btn-outline-secondary' }}" rel="nofollow noindex">
|
|
{{ _('Subscribers') }}
|
|
</a>
|
|
<a href="/community/{{ community.link() }}/moderate/appeals" class="btn {{ 'btn-primary' if current == 'appeals' else 'btn-outline-secondary' }} disabled" rel="nofollow noindex" >
|
|
{{ _('Appeals') }}
|
|
</a>
|
|
<a href="/community/{{ community.link() }}/moderate/modlog" class="btn {{ 'btn-primary' if current == 'modlog' else 'btn-outline-secondary' }} " rel="nofollow noindex" >
|
|
{{ _('Mod log') }}
|
|
</a>
|
|
</div> |