1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 09:58:23 +02:00
This commit is contained in:
Nicolas Margulies
2021-10-04 20:45:05 +02:00
committed by Yohann D'ANELLO
parent e29b42eecc
commit 633ab88b04
4 changed files with 22 additions and 13 deletions

View File

@ -251,7 +251,7 @@ class ProfileTrustView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView):
model = User
template_name = 'member/profile_trust.html'
context_object_name = 'user_object'
extra_context = {"title":_("Note friendships")}
extra_context = {"title": _("Note friendships")}
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
@ -262,20 +262,21 @@ class ProfileTrustView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView):
trusting=context["object"].note,
trusted=context["object"].note
))
context["widget"] = {"name": "trusted",
"attrs": { "model_pk": ContentType.objects.get_for_model(Alias).pk,
context["widget"] = {
"name": "trusted",
"attrs": {
"model_pk": ContentType.objects.get_for_model(Alias).pk,
"class": "autocomplete form-control",
"id": "trusted",
"resetable": True,
"api_url": "/api/note/alias/?note__polymorphic_ctype__model=noteuser",
"name_field": "name",
"placeholder": ""
}
}
}
return context
class ProfileAliasView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView):
"""
View and manage user aliases.