musicias show_history

This commit is contained in:
Jorge Pastor 2024-08-20 10:46:04 +02:00
parent 20bcb83c83
commit 33293d2ba8
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ from django.http import HttpResponseNotFound, Http404
class HistoryView(CustomContextMixin, UserTokenRequiredMixin, View): class HistoryView(CustomContextMixin, UserTokenRequiredMixin, View):
def get_object(self, pk): def check_resource(self, pk):
related_resources = self.get_all_resources() related_resources = self.get_all_resources()
account = related_resources.filter(resource_id__verbose_name='account-disk').first() account = related_resources.filter(resource_id__verbose_name='account-disk').first()
@ -81,7 +81,7 @@ class HistoryView(CustomContextMixin, UserTokenRequiredMixin, View):
context = { context = {
'ids': pk 'ids': pk
} }
self.get_object(pk) self.check_resource(pk)
return render(request, "musician/history.html", context) return render(request, "musician/history.html", context)
# TODO: funcion de dashborad, mirar como no repetir esta funcion # TODO: funcion de dashborad, mirar como no repetir esta funcion