summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-10-30 18:44:00 -0200
committerIsmael Carnales <icarnales@gmail.com>2009-11-09 22:24:42 -0200
commit680d9d30dffeb82db6feb26f3f10a7c8645ec879 (patch)
tree960f3f6046aa00beb61538d94234c2e96b602daa /public
parentb4999b495e828ff68a5c93f65a39efad5b37dcea (diff)
downloadarchweb-680d9d30dffeb82db6feb26f3f10a7c8645ec879.tar.gz
archweb-680d9d30dffeb82db6feb26f3f10a7c8645ec879.zip
use direct_to_template to replace static views
Diffstat (limited to 'public')
-rw-r--r--public/views.py13
1 files changed, 0 insertions, 13 deletions
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'),