Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI40 Project1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jason
CSCI40 Project1
Commits
316649f7
Commit
316649f7
authored
Apr 01, 2020
by
Jason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
e5be3d69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
views.py
thegoodplace/froyo/views.py
+54
-0
No files found.
thegoodplace/froyo/views.py
0 → 100644
View file @
316649f7
from
django.shortcuts
import
render
from
django.views.generic.base
import
TemplateView
class
FroyoView
(
TemplateView
):
template_name
=
'froyo_homepage.html'
class
IngCreateFormView
(
TemplateView
):
template_name
=
'ingredients_create_form.html'
class
IngDetailView
(
TemplateView
):
template_name
=
'ingredients_detail.html'
class
IngListView
(
TemplateView
):
template_name
=
'ingredients_list.html'
class
IngUpdateFormView
(
TemplateView
):
template_name
=
'ingredients_update_form.html'
class
OrdCreateFormView
(
TemplateView
):
template_name
=
'orders_create_form.html'
class
OrdDetailView
(
TemplateView
):
template_name
=
'orders_detail.html'
class
OrdListView
(
TemplateView
):
template_name
=
'orders_list.html'
class
OrdUpdateFormView
(
TemplateView
):
template_name
=
'orders_update_form.html'
class
RecCreateFormView
(
TemplateView
):
template_name
=
'recipes_create_form.html'
class
RecDetailView
(
TemplateView
):
template_name
=
'recipes_detail.html'
class
RecListView
(
TemplateView
):
template_name
=
'recipes_list.html'
class
RecUpdateFormView
(
TemplateView
):
template_name
=
'recipes_update_form.html'
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment