{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') -%} {% extends 'themes/' + theme() + '/base.html' -%} {% else -%} {% extends "base.html" -%} {% endif -%} -%} {% from 'bootstrap5/form.html' import render_form -%} {% set active_child = 'list_communities' -%} {% block app_content -%}
{% if current_user.is_authenticated -%} {% if community_membership(current_user, community) in [SUBSCRIPTION_MEMBER, SUBSCRIPTION_MODERATOR, SUBSCRIPTION_OWNER] -%} {{ _('Leave') }} {% elif community_membership(current_user, community) == SUBSCRIPTION_PENDING -%} {{ _('Pending') }} {% else -%} {{ _('Join') }} {% endif -%} {% else -%} {{ _('Join') }} {% endif -%} | {% if not low_bandwidth -%}{% endif -%} | {{ community.display_name() }} | {{ community.post_count }} | {{ community.post_reply_count }} | {{ arrow.get(community.last_active).humanize(locale=locale) }} |
---|
{{ _('There are no communities yet.') }}
{% endif -%} {% endblock -%}