{% extends "base.html" %} {% from 'bootstrap5/form.html' import render_form %} {% block app_content %}
{% if len(communities) > 0 %}
{% for community in communities %} {% endfor %}
{{ _('Community') }} {{ _('Posts') }} {{ _('Comments') }} {{ _('Active') }} {{ _('Actions') }}
{{ community.display_name() }} {{ community.post_count }} {{ community.post_reply_count }} {{ moment(community.last_active).fromNow(refresh=True) }} {% if current_user.is_authenticated %} {% if community_membership(current_user, community) == SUBSCRIPTION_MEMBER %} Unsubscribe {% elif community_membership(current_user, community) == SUBSCRIPTION_PENDING %} Pending {% else %} Subscribe {% endif %} {% endif %}
{% else %}

{{ _('There are no communities yet.') }}

{% endif %} {% endblock %}