Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thegoodplace
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
Bienvenido Villabroza
thegoodplace
Commits
7eecbc2c
Commit
7eecbc2c
authored
Mar 18, 2020
by
thisLexic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
connected all the urls to their respective views and templates
parent
d1c6dc30
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
136 additions
and
12 deletions
+136
-12
ingredients_create_form.html
thegoodplace/froyo/templates/ingredients_create_form.html
+9
-0
ingredients_detail.html
thegoodplace/froyo/templates/ingredients_detail.html
+9
-0
ingredients_update_form.html
thegoodplace/froyo/templates/ingredients_update_form.html
+9
-0
orders_create_form.html
thegoodplace/froyo/templates/orders_create_form.html
+9
-0
orders_detail.html
thegoodplace/froyo/templates/orders_detail.html
+9
-0
orders_list.html
thegoodplace/froyo/templates/orders_list.html
+9
-0
orders_update_form.html
thegoodplace/froyo/templates/orders_update_form.html
+9
-0
recipes_create_form.html
thegoodplace/froyo/templates/recipes_create_form.html
+9
-0
recipes_detail.html
thegoodplace/froyo/templates/recipes_detail.html
+9
-0
recipes_list.html
thegoodplace/froyo/templates/recipes_list.html
+9
-0
recipes_update_form.html
thegoodplace/froyo/templates/recipes_update_form.html
+9
-0
urls.py
thegoodplace/froyo/urls.py
+11
-11
views.py
thegoodplace/froyo/views.py
+26
-1
No files found.
thegoodplace/froyo/templates/ingredients_create_form.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Ingredients - Create
</title>
</head>
<body>
<h1>
Ingredients - Create
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/ingredients_detail.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Ingredients - Detail
</title>
</head>
<body>
<h1>
Ingredients - Detail
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/ingredients_update_form.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Ingredients - Update
</title>
</head>
<body>
<h1>
Ingredients - Update
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_create_form.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Orders - Create
</title>
</head>
<body>
<h1>
Orders - Create
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_detail.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Orders - Detail
</title>
</head>
<body>
<h1>
Orders - Detail
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_list.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Orders - List
</title>
</head>
<body>
<h1>
Orders - List
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_update_form.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Orders - Update
</title>
</head>
<body>
<h1>
Orders - Update
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_create_form.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Recipes - Create
</title>
</head>
<body>
<h1>
Recipes - Create
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_detail.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Recipes - Detail
</title>
</head>
<body>
<h1>
Recipes - Detail
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_list.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Recipes - List
</title>
</head>
<body>
<h1>
Recipes - List
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_update_form.html
0 → 100644
View file @
7eecbc2c
<!DOCTYPE html>
<html>
<head>
<title>
Recipes - Update
</title>
</head>
<body>
<h1>
Recipes - Update
</h1>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/urls.py
View file @
7eecbc2c
...
@@ -3,17 +3,17 @@ from . import views
...
@@ -3,17 +3,17 @@ from . import views
urlpatterns
=
[
urlpatterns
=
[
url
(
r'ingredients_list/'
,
views
.
ingredients_list
),
url
(
r'ingredients_list/'
,
views
.
ingredients_list
),
url
(
r'ingredients_detail/'
,
views
.
ingredients_
list
),
url
(
r'ingredients_detail/'
,
views
.
ingredients_
detail
),
url
(
r'ingredients_update_form/'
,
views
.
ingredients_
list
),
url
(
r'ingredients_update_form/'
,
views
.
ingredients_
update_form
),
url
(
r'ingredients_create_form/'
,
views
.
ingredients_
list
),
url
(
r'ingredients_create_form/'
,
views
.
ingredients_
create_form
),
url
(
r'recipes_list/'
,
views
.
ingredient
s_list
),
url
(
r'recipes_list/'
,
views
.
recipe
s_list
),
url
(
r'recipes_detail/'
,
views
.
ingredients_list
),
url
(
r'recipes_detail/'
,
views
.
recipes_detail
),
url
(
r'recipes_update_form/'
,
views
.
ingredients_list
),
url
(
r'recipes_update_form/'
,
views
.
recipes_update_form
),
url
(
r'recipes_create_form/'
,
views
.
ingredients_list
),
url
(
r'recipes_create_form/'
,
views
.
recipes_create_form
),
url
(
r'orders_list/'
,
views
.
ingredient
s_list
),
url
(
r'orders_list/'
,
views
.
order
s_list
),
url
(
r'orders_detail/'
,
views
.
ingredients_list
),
url
(
r'orders_detail/'
,
views
.
orders_detail
),
url
(
r'orders_update_form/'
,
views
.
ingredients_list
),
url
(
r'orders_update_form/'
,
views
.
orders_update_form
),
url
(
r'orders_create_form/'
,
views
.
ingredients_list
),
url
(
r'orders_create_form/'
,
views
.
orders_create_form
),
]
]
\ No newline at end of file
thegoodplace/froyo/views.py
View file @
7eecbc2c
from
django.shortcuts
import
render
from
django.shortcuts
import
render
def
ingredients_list
(
request
):
def
ingredients_list
(
request
):
return
render
(
request
,
'ingredients_list.html'
)
return
render
(
request
,
'ingredients_list.html'
)
\ No newline at end of file
def
ingredients_detail
(
request
):
return
render
(
request
,
'ingredients_detail.html'
)
def
ingredients_update_form
(
request
):
return
render
(
request
,
'ingredients_update_form.html'
)
def
ingredients_create_form
(
request
):
return
render
(
request
,
'ingredients_create_form.html'
)
def
recipes_list
(
request
):
return
render
(
request
,
'recipes_list.html'
)
def
recipes_detail
(
request
):
return
render
(
request
,
'recipes_detail.html'
)
def
recipes_update_form
(
request
):
return
render
(
request
,
'recipes_update_form.html'
)
def
recipes_create_form
(
request
):
return
render
(
request
,
'recipes_create_form.html'
)
def
orders_list
(
request
):
return
render
(
request
,
'orders_list.html'
)
def
orders_detail
(
request
):
return
render
(
request
,
'orders_detail.html'
)
def
orders_update_form
(
request
):
return
render
(
request
,
'orders_update_form.html'
)
def
orders_create_form
(
request
):
return
render
(
request
,
'orders_create_form.html'
)
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