Added month view and url.
[~kgodey/maayanwich.git] / views.py
index 872104f..efced1f 100644 (file)
--- a/views.py
+++ b/views.py
@@ -55,6 +55,13 @@ def newsandwiches(request):
                raise Http404
        return render_to_response('allsandwiches.html', {'sandwiches': sandwiches,})
        
+def sandwich_month(request, year, month):
+       try:
+               sandwiches = Sandwich.objects.filter(date_made__month=month, date_made__year=year)
+       except Sandwich.DoesNotExist:
+               raise Http404
+       return render_to_response('allsandwiches.html', {'sandwiches': sandwiches,})
+       
        
 def specific_sandwich(request, slug):
        try: