Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI 40 Midterm Project
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
Lance Michael O. Co
CSCI 40 Midterm Project
Commits
5e1df965
Commit
5e1df965
authored
Mar 13, 2020
by
Lance Michael O. Co
😢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
recipe html files made
parent
f53755c5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
1 deletion
+18
-1
views.cpython-38.pyc
froyo/__pycache__/views.cpython-38.pyc
+0
-0
recipe_create_form.html
froyo/templates/recipe_create_form.html
+0
-0
recipe_detail.html
froyo/templates/recipe_detail.html
+0
-0
recipe_list.html
froyo/templates/recipe_list.html
+0
-0
recipe_update_form.html
froyo/templates/recipe_update_form.html
+0
-0
views.py
froyo/views.py
+18
-1
No files found.
froyo/__pycache__/views.cpython-38.pyc
View file @
5e1df965
No preview for this file type
froyo/templates/recipe_create_form.html
0 → 100644
View file @
5e1df965
froyo/templates/recipe_detail.html
0 → 100644
View file @
5e1df965
froyo/templates/recipe_list.html
0 → 100644
View file @
5e1df965
froyo/templates/recipe_update_form.html
0 → 100644
View file @
5e1df965
froyo/views.py
View file @
5e1df965
...
@@ -42,3 +42,20 @@ class RecipesUpdate(UpdateView):
...
@@ -42,3 +42,20 @@ class RecipesUpdate(UpdateView):
class
RecipesCreate
(
CreateView
):
class
RecipesCreate
(
CreateView
):
template_name
=
"recipes_create_form.html"
template_name
=
"recipes_create_form.html"
#Orders
class
OrdersList
(
ListView
):
template_name
=
"orders_list.html"
class
OrdersDetail
(
DetailView
):
template_name
=
"orders_detail.html"
class
OrdersUpdate
(
UpdateView
):
template_name
=
"orders_update_form.html"
class
OrdersCreate
(
CreateView
):
template_name
=
"orders_create_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