comparison apps/bundle/views.py @ 170:3be23e2e8fe7

Use correct template for bundle explore page
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 00:20:22 -0400
parents d31b236ed5cf
children 86129d185ddb
comparison
equal deleted inserted replaced
169:9565b494b989 170:3be23e2e8fe7
74 def explore(request): 74 def explore(request):
75 context = { 75 context = {
76 'recent_bundles': Bundle.objects.all()[:20] 76 'recent_bundles': Bundle.objects.all()[:20]
77 } 77 }
78 78
79 return render(request, "snippet/explore.html", context) 79 return render(request, "bundle/explore.html", context)