Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
theGoodPlaceFroyo
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
1
Merge Requests
1
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
Neil Patrick Lim de los Reyes
theGoodPlaceFroyo
Commits
43266523
Commit
43266523
authored
Mar 18, 2020
by
Neil Patrick Lim de los Reyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
addings lines to urls (thegoodplace) and views to froyo
parent
862e97d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
urls.py
thegoodplace/froyo/urls.py
+6
-0
views.py
thegoodplace/froyo/views.py
+2
-1
urls.py
thegoodplace/thegoodplace/urls.py
+1
-0
No files found.
thegoodplace/froyo/urls.py
0 → 100644
View file @
43266523
from
django.conf.urls
import
url
from
.
import
views
urlpatterns
=
[
url
(
r'list/'
,
views
.
list
)
]
\ No newline at end of file
thegoodplace/froyo/views.py
View file @
43266523
from
django.shortcuts
import
render
# Create your views here.
def
list
(
request
):
return
render
(
request
,
'ingredients_list.html'
)
thegoodplace/thegoodplace/urls.py
View file @
43266523
...
...
@@ -19,4 +19,5 @@ from django.contrib import admin
urlpatterns
=
[
url
(
r'^admin/'
,
admin
.
site
.
urls
),
url
(
r'^froyo/'
,
include
(
'froyo.urls'
))
]
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