comparison hgscm/apps/www/views.py @ 162:d4b03ef491f2

FIX: workflow_guide was missing a view.
author Arne Babenhauserheide <bab@draketo.de>
date Thu, 14 May 2009 00:20:43 +0200
parents 8d25e34c21c2
children 307dd774a9b6
comparison
equal deleted inserted replaced
161:7395ca01d978 162:d4b03ef491f2
10 return render_to_response("frontpage.html", { }, 10 return render_to_response("frontpage.html", { },
11 RequestContext(request)) 11 RequestContext(request))
12 def about(request): 12 def about(request):
13 return render_to_response("about.html", { }, 13 return render_to_response("about.html", { },
14 RequestContext(request)) 14 RequestContext(request))
15 def workflow_guide(request):
16 return render_to_response("workflow_guide.html", { },
17 RequestContext(request))
15 def thepage(request): 18 def thepage(request):
16 return render_to_response("thepage.html", { }, 19 return render_to_response("thepage.html", { },
17 RequestContext(request)) 20 RequestContext(request))
18 def download(request, platform, version): 21 def download(request, platform, version):
19 return HttpResponseRedirect(get_download(platform, version)['url']) 22 return HttpResponseRedirect(get_download(platform, version)['url'])