2022-11-12 14:57:29 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2023-09-25 19:33:24 +00:00
|
|
|
{% block title %}{{ g.user.handle_or_id() }}'s followers - Bridgy Fed{% endblock %}
|
2022-11-12 14:57:29 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2022-11-22 23:21:53 +00:00
|
|
|
{% include "user_addresses.html" %}
|
|
|
|
|
|
|
|
<div class="row big">Followers</div>
|
2022-11-12 14:57:29 +00:00
|
|
|
|
2023-01-10 03:01:48 +00:00
|
|
|
{% with page_name="followers" %}
|
|
|
|
{% include "_followers.html" %}
|
|
|
|
{% endwith %}
|
2022-11-12 14:57:29 +00:00
|
|
|
|
|
|
|
{% endblock %}
|