Attachment 'views.py'
Download 1
2 from django.http import HttpResponse
3 from django.template import Context,loader
4
5 def hello(request,who):
6 t=loader.get_template('hello.html')
7 c=Context({'who':who})
8 html=t.render(c)
9 return(HttpResponse(html))
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.- [get | view] (2009-02-24 14:14:17, 0.3 KB) [[attachment:hello.txt]]
- [get | view] (2009-02-24 14:33:09, 5.9 KB) [[attachment:hello_v3.tar.gz]]
- [get | view] (2009-02-24 14:31:14, 0.2 KB) [[attachment:views.py]]
You are not allowed to attach a file to this page.