Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jaysonlim_reading
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
Jayson Lim
jaysonlim_reading
Commits
a707e346
Commit
a707e346
authored
Mar 30, 2023
by
Jayson Lim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finalized urls following the specifications
parent
00746cff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
urls.cpython-39.pyc
jaysonlim_reading/bookshelf/__pycache__/urls.cpython-39.pyc
+0
-0
urls.py
jaysonlim_reading/bookshelf/urls.py
+2
-2
No files found.
jaysonlim_reading/bookshelf/__pycache__/urls.cpython-39.pyc
View file @
a707e346
No preview for this file type
jaysonlim_reading/bookshelf/urls.py
View file @
a707e346
...
@@ -7,8 +7,8 @@ urlpatterns = [
...
@@ -7,8 +7,8 @@ urlpatterns = [
path
(
'home/'
,
home_view
,
name
=
'home'
),
path
(
'home/'
,
home_view
,
name
=
'home'
),
path
(
'books/'
,
BooksListView
.
as_view
(),
name
=
'books'
),
path
(
'books/'
,
BooksListView
.
as_view
(),
name
=
'books'
),
path
(
'authors/'
,
AuthorsListView
.
as_view
(),
name
=
'authors'
),
path
(
'authors/'
,
AuthorsListView
.
as_view
(),
name
=
'authors'
),
path
(
'books/<int:pk>'
,
BooksDetailView
.
as_view
(),
name
=
'books-detail'
),
path
(
'books/<int:pk>
/details
'
,
BooksDetailView
.
as_view
(),
name
=
'books-detail'
),
path
(
'authors/<int:pk>'
,
AuthorsDetailView
.
as_view
(),
name
=
'authors-detail'
),
path
(
'authors/<int:pk>
/details/
'
,
AuthorsDetailView
.
as_view
(),
name
=
'authors-detail'
),
]
]
app_name
=
"bookshelf"
app_name
=
"bookshelf"
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