Commit 457fb4f9 authored by Jason's avatar Jason

Update views.py

parent 316649f7
...@@ -6,49 +6,49 @@ class FroyoView(TemplateView): ...@@ -6,49 +6,49 @@ class FroyoView(TemplateView):
template_name = 'froyo_homepage.html' template_name = 'froyo_homepage.html'
class IngCreateFormView(TemplateView): class IngredientsCreateFormView(TemplateView):
template_name = 'ingredients_create_form.html' template_name = 'ingredients_create_form.html'
class IngDetailView(TemplateView): class IngredientsDetailView(TemplateView):
template_name = 'ingredients_detail.html' template_name = 'ingredients_detail.html'
class IngListView(TemplateView): class IngredientsListView(TemplateView):
template_name = 'ingredients_list.html' template_name = 'ingredients_list.html'
class IngUpdateFormView(TemplateView): class IngredientsUpdateFormView(TemplateView):
template_name = 'ingredients_update_form.html' template_name = 'ingredients_update_form.html'
class OrdCreateFormView(TemplateView): class OrdersCreateFormView(TemplateView):
template_name = 'orders_create_form.html' template_name = 'orders_create_form.html'
class OrdDetailView(TemplateView): class OrdersDetailView(TemplateView):
template_name = 'orders_detail.html' template_name = 'orders_detail.html'
class OrdListView(TemplateView): class OrdersListView(TemplateView):
template_name = 'orders_list.html' template_name = 'orders_list.html'
class OrdUpdateFormView(TemplateView): class OrdersUpdateFormView(TemplateView):
template_name = 'orders_update_form.html' template_name = 'orders_update_form.html'
class RecCreateFormView(TemplateView): class RecipesCreateFormView(TemplateView):
template_name = 'recipes_create_form.html' template_name = 'recipes_create_form.html'
class RecDetailView(TemplateView): class RecipesDetailView(TemplateView):
template_name = 'recipes_detail.html' template_name = 'recipes_detail.html'
class RecListView(TemplateView): class RecipesListView(TemplateView):
template_name = 'recipes_list.html' template_name = 'recipes_list.html'
class RecUpdateFormView(TemplateView): class RecipesUpdateFormView(TemplateView):
template_name = 'recipes_update_form.html' template_name = 'recipes_update_form.html'
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment