From 680d9d30dffeb82db6feb26f3f10a7c8645ec879 Mon Sep 17 00:00:00 2001 From: Ismael Carnales Date: Fri, 30 Oct 2009 18:44:00 -0200 Subject: use direct_to_template to replace static views --- public/views.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'public') diff --git a/public/views.py b/public/views.py index 4a4e01e7..a1010b43 100644 --- a/public/views.py +++ b/public/views.py @@ -16,16 +16,6 @@ def index(request): } return render_to_response('public/index.html', RequestContext(request, context)) - -def about(request): - return render_to_response('public/about.html') - -def art(request): - return render_to_response('public/art.html') - -def svn(request): - return render_to_response('public/svn.html') - def projects(request): projects = ExternalProject.objects.all() return render_to_response('public/projects.html', {'projects': projects}) @@ -68,9 +58,6 @@ def download(request): template_object_name="mirror_url", extra_context={"path": request.path}) -def irc(request): - return render_to_response('public/irc.html') - def moreforums(request): return list_detail.object_list(request, AltForum.objects.order_by('language', 'name'), -- cgit v1.2.3-54-g00ecf