it is incredibly easy, just difficult to guess out without example.

*.html

<form action="/web" method="GET">
<TD><textarea cols="20" rows="1" name="Output" value={{"Output"}}>
{{Output}} </textarea> </TD>
</form>
#####################################################

views.py

def web(request):
    Out, Ww =request.GET.get('Output',''), request.GET.get('sWw','')

    Out='naujas zodis'
    sWw= 'off'
    t = loader.get_template('c:/Python27/Scripts/Spokas/web.html')
    c = Context({
        'Output': Out,
    })

    return HttpResponse(t.render(c))

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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