{% extends "base.html" %} {% from 'bootstrap5/form.html' import render_form %} {% block app_content %} {% if len(topics) > 0 %}

{{ _('Choose a topic') }}

{% for topic in topics %} {% endfor %}
{{ topic.name }}
{% else %}

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

{% endif %}

{{ _('Explore communities') }}

{% endblock %}