{% if communities %}

Recommended Communities

{% for item in communities %}

{{ item.community.name }}

{{ item.community.description|default:"No description available." }}

Category: {{ item.community.get_category_display }}
{% if item.community.tags.exists %}
{% for tag in item.community.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
Relevance Score: {{ item.relevance_score }}
Reason: {{ item.reasoning }}
Visit Website
{% endfor %}
{% else %}

No recommended communities found.

{% endif %}