Hi, What happens when you try?
You may need to "serialize" the individual attributes of user, or just return request.user.username. Django has some tools to help you serialize models. https://docs.djangoproject.com/en/dev/topics/serialization/ Collin On Tuesday, December 2, 2014 11:57:10 PM UTC-5, JAI PRAKASH SINGH wrote: > > sir, > > thank you for reply. but actually this mistake was while posting , in > my actual code request.user is present . > so please if some more guidance from your side please share ... > > On Tue, Dec 2, 2014 at 7:16 PM, Jerry Dumblauskas <[email protected] > <javascript:>> wrote: > >> missing the t? reques.user to request.user >> >> On Tue, Dec 2, 2014 at 7:42 AM, JAI PRAKASH SINGH <[email protected] >> <javascript:>> wrote: >> >>> hello all, >>> >>> i am very new to django , i have just started to work on django , >>> >>> i am using .hbs file in django project >>> my aim is to use request.user in .hbs file >>> >>> i am trying this ... >>> not working >>> >>> >>> >>> ***********************************************view.py**************************************** >>> data_dict = {....... >>> 'user':reques.user, >>> # not working # but stacin name working like user: >>> "jp" >>> .......} >>> >>> content_type = 'application/json' >>> return HttpResponse(json.dumps(data_dict), content_type) >>> >>> >>> *******************************************.hbs >>> file***************************** >>> >>> >>> <div class="ratdefsmall"><span class="strong">*{{response.user}}*NO >>> RATING</span><br></div> >>> >>> >>> >>> ************************************************************************************ >>> >>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Django users" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected] <javascript:>. >>> To post to this group, send email to [email protected] >>> <javascript:>. >>> Visit this group at http://groups.google.com/group/django-users. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/django-users/3a08e636-78ac-4342-8577-816ac25a29e9%40googlegroups.com >>> >>> <https://groups.google.com/d/msgid/django-users/3a08e636-78ac-4342-8577-816ac25a29e9%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- >> You received this message because you are subscribed to a topic in the >> Google Groups "Django users" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/django-users/rxIIoZ0dGLY/unsubscribe. >> To unsubscribe from this group and all its topics, send an email to >> [email protected] <javascript:>. >> To post to this group, send email to [email protected] >> <javascript:>. >> Visit this group at http://groups.google.com/group/django-users. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/CA%2BG_OOsDz5NJdNXGkHi8Y0gUZ1GwdSb%3DouSVPzdz68AiC27bVg%40mail.gmail.com >> >> <https://groups.google.com/d/msgid/django-users/CA%2BG_OOsDz5NJdNXGkHi8Y0gUZ1GwdSb%3DouSVPzdz68AiC27bVg%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> >> For more options, visit https://groups.google.com/d/optout. >> > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e5b3c665-42f3-40df-9d84-f13e211707d2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

