{% extends "base.html" %} {% block title %}Community Settings - BalanceBoard{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% include '_nav.html' %}

Community Settings

Select which communities, subreddits, and sources to include in your feed

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Current Selection

You have selected {{ selected_communities|length }} communities out of {{ available_communities|length }} available.

Available Communities

Choose the communities you want to follow. Content from these sources will appear in your feed.

{% set platforms = available_communities|groupby('platform') %} {% for platform, communities in platforms %}

{% if platform == 'reddit' %}R{% elif platform == 'hackernews' %}H{% elif platform == 'lobsters' %}L{% elif platform == 'stackexchange' %}S{% endif %} {{ platform|title }}

{% for community in communities %}

{{ community.name }}

{{ community.platform|title }} community

📊 {{ community.platform|title }} 🔗 {{ community.id }}
{% endfor %}
{% endfor %}
Cancel
{% endblock %}