use remote id for followers links

this should be stored in the db
This commit is contained in:
Mouse Reeve 2020-10-05 14:58:57 -07:00
parent c77cb38c83
commit d8800b09c4

View file

@ -25,8 +25,8 @@
<p>{{ user.username }}</p>
<p>Joined {{ user.created_date | naturaltime }}</p>
<p>
<a href="/user/{{ user|username }}/followers">{{ user.followers.count }} follower{{ user.followers.count | pluralize }}</a>,
<a href="/user/{{ user|username }}/following">{{ user.following.count }} following</a></p>
<a href="{{ user.remote_id }}/followers">{{ user.followers.count }} follower{{ user.followers.count | pluralize }}</a>,
<a href="{{ user.remote_id }}/following">{{ user.following.count }} following</a></p>
</div>
</div>
</div>