Hi sir, i didn't understand why you are returning template_name in list, can anyone explain me
@rohitkumar-jt3ds2 жыл бұрын
you can modify the given template_name by another name, it is on you.
@ritikkarma71443 жыл бұрын
Hii sir please make video on Redis
@the_jekyll_hyde4 жыл бұрын
Brother can you make a video on User tracking in Django
@friendsquicksolution66574 жыл бұрын
👍👍👍👍👍❤❤❤
@chillsoftwarengineer4 жыл бұрын
type object 'Student' has no attribute 'objects' this is error
@rupeshpatil92664 жыл бұрын
In order to see cookies in sonam.html file def render_to_response(self, context, **response_kwargs): response = super().render_to_response(context,**response_kwargs) response.set_cookie('user','sonam') context['user']= self.request.COOKIES['user'] return response Is it right way?