mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
|
from django.utils.decorators import method_decorator
|
||
|
from django.views.generic import TemplateView
|
||
|
|
||
|
from users.decorators import identity_required
|
||
|
from users.models import FollowStates
|
||
|
|
||
|
|
||
|
@method_decorator(identity_required, name="dispatch")
|
||
|
class FollowsPage(TemplateView):
|
||
|
"""
|
||
|
Shows followers/follows.
|
||
|
"""
|
||
|
|
||
|
template_name = "settings/follows.html"
|
||
|
|
||
|
def get_context_data(self):
|
||
|
# Gather all identities with a following relationship with us
|
||
|
identities = {}
|
||
|
for outbound_follow in self.request.identity.outbound_follows.filter(
|
||
|
state__in=FollowStates.group_active()
|
||
|
):
|
||
|
identities.setdefault(outbound_follow.target, {})[
|
||
|
"outbound"
|
||
|
] = outbound_follow
|
||
|
for inbound_follow in self.request.identity.inbound_follows.filter(
|
||
|
state__in=FollowStates.group_active()
|
||
|
):
|
||
|
identities.setdefault(inbound_follow.source, {})["inbound"] = inbound_follow
|
||
|
|
||
|
return {
|
||
|
"section": "follows",
|
||
|
"identities": sorted(identities.items(), key=lambda i: i[0].username),
|
||
|
}
|