Re: formatting results of search

2010-03-04 Thread gintare
Thanks, How about values in database? Than i am retrieving data from database i am getting: (3, u' ANN I. PERSSON1', u' MAGNUS W. LARSSON2, STIG STENSTR\xd6M3, B. JONAS OHLSSON1, LARS SAMUELSON1 AND L. REINE WALLENBERG2 ', u' nature materials', u' .. Is it possible to write to

Re: formatting results of search

2010-02-21 Thread Dennis Kaarsemaker
On wo, 2010-02-17 at 05:32 -0800, gintare wrote: > @@in *.html > @@using line {{ word|escape }} > > @@i am getting printed answer :(u'moi',) instead of moi. > @@I need only word moi (without any brakets, quatations) be visible in > a webpage. In this case you want word.0|escape values()

formatting results of search

2010-02-17 Thread gintare
@@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