Re: How to create a link between Posts List View and Items List View of the same User

2020-07-29 Thread Jules Andiole
replace - Item.objects.filter(designer=user) with - Item.objects.filter(*request.user*) On Thursday, 30 July 2020 at 09:03:26 UTC+10 coolguy wrote: > Please share the project directory structure. Send a screen shot or write > it. Tnx > > > On Tuesday, July 28, 2020 at 11:14:14 P

Re: How to create a link between Posts List View and Items List View of the same User

2020-07-29 Thread Jules Andiole
Replace Item.objects.filter(*designer=user*).order_by('-timestamp') with Item.objects.filter*(designer = request.user*).order_by('-timestamp') On Thursday, 30 July 2020 at 09:03:26 UTC+10 coolguy wrote: > Please share the project directory structure. Send a screen shot or write > it. Tnx > >