about and seasons_veggies typos

This commit is contained in:
Sanj 2011-10-22 14:13:36 +01:00
parent 080f4b9ef8
commit 5b702c5fb8
2 changed files with 5 additions and 1 deletions

View File

@ -15,3 +15,6 @@ def seasons_veggies(request):
def meet_farmers(request):
return render_to_response("meet_farmers.html")
def about(request):
return render_to_response("about.html")

View File

@ -13,9 +13,10 @@ urlpatterns = patterns('',
(r'^test/$', 'recipes.views.test'),
(r'^hbt/$', 'organic.views.hbt'),
(r'^pickup-delivery/$', 'organic.views.pickup'),
(r'^seasons-veggies/$', 'organic.views.season_veggies'),
(r'^seasons-veggies/$', 'organic.views.seasons_veggies'),
(r'^meet-farmers/$', 'organic.views.meet_farmers'),
(r'^recipes/$', 'recipes.views.index'),
(r'^about/$', 'organic.views.about'),
# (r'^events/$', 'organic.views.events'),
# (r'^resources/$', 'organic.views.resources'),
# Uncomment the admin/doc line below to enable admin documentation: