{% extends "base.html" %} {% block content %} <ul> {% for follower in following %} <li><a href="{{ url_for('.get_profile_html', user_id=follower) }}">{{ follower }}</a></li> {% endfor %} </ul> {% endblock %}