@@in views.py i am making search in database:

def search1(request):
#..............
     results = EntryD.objects.filter(qset).values_list('fwordE')
#................
     return render_to_response("diction.html", {
        "results": results,
        "query": query
    })


@@in *.html
@@using line  <li>{{ word|escape }}</l1>

@@i am getting printed answer :(u'moi',)  instead of moi.
@@I need only word moi (without any brakets, quatations) be visible in
a webpage.

How correctly format results of search in database when they are
posted to *.html?

regards,
gintare

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to