fix dids and credentials from the user
This commit is contained in:
parent
79dcb42c23
commit
40d662f62e
|
@ -629,7 +629,7 @@ class DidsView(Credentials):
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
context = super().get_context_data(**kwargs)
|
context = super().get_context_data(**kwargs)
|
||||||
context.update({
|
context.update({
|
||||||
'dids': DID.objects,
|
'dids': DID.objects.filter(user=self.request.user),
|
||||||
})
|
})
|
||||||
return context
|
return context
|
||||||
|
|
||||||
|
|
|
@ -81,8 +81,11 @@ class CredentialsView(MyWallet, TemplateView):
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
context = super().get_context_data(**kwargs)
|
context = super().get_context_data(**kwargs)
|
||||||
|
creds = VerificableCredential.objects.filter(
|
||||||
|
user=self.request.user
|
||||||
|
)
|
||||||
context.update({
|
context.update({
|
||||||
'credentials': VerificableCredential.objects,
|
'credentials': creds,
|
||||||
})
|
})
|
||||||
return context
|
return context
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue