{% extends "feeds/base.html" %} {% block title %}Connections - feedwell{% endblock %} {% block content %}

Connections

Connect the accounts you want folded into your unified feed. (Stub connect flow for now — no real login to each platform yet.) Drag a panel to reorder it.

{% for platform in platforms %}

{{ platform.label }}

{% for account in platform.accounts %}
Connected as {{ account.display_name|default:account.handle }}
{% csrf_token %}
{% endfor %} {% if platform.accounts %}+ Add another {{ platform.label }} account{% else %}Connect {{ platform.label }}{% endif %}
{% endfor %}
{% endblock %}