Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lance_santuyo_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
Lance Dominic B. Santuyo
lance_santuyo_reading
Commits
4f487898
Commit
4f487898
authored
Mar 29, 2023
by
Lance Dominic B. Santuyo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed template names to match project specifications
parent
2641dd11
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
views.py
lance_santuyo_reading/bookshelf/views.py
+4
-1
No files found.
lance_santuyo_reading/bookshelf/views.py
View file @
4f487898
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
django.views
import
View
from
django.views
import
View
from
django.views.generic.list
import
ListView
from
django.views.generic.list
import
ListView
from
django.views.generic.detail
import
DetailView
from
django.views.generic.detail
import
DetailView
...
@@ -14,17 +13,21 @@ class HomepageView(View):
...
@@ -14,17 +13,21 @@ class HomepageView(View):
class
BooksPageView
(
ListView
):
class
BooksPageView
(
ListView
):
model
=
Books
model
=
Books
template_name
=
'bookshelf/books.html'
context_object_name
=
'book_list'
context_object_name
=
'book_list'
class
BooksDetailsView
(
DetailView
):
class
BooksDetailsView
(
DetailView
):
model
=
Books
model
=
Books
template_name
=
'bookshelf/book_details.html'
class
AuthorsPageView
(
ListView
):
class
AuthorsPageView
(
ListView
):
model
=
Author
model
=
Author
template_name
=
'bookshelf/authors.html'
context_object_name
=
'author_list'
context_object_name
=
'author_list'
class
AuthorsDetailsView
(
DetailView
):
class
AuthorsDetailsView
(
DetailView
):
model
=
Author
model
=
Author
template_name
=
'bookshelf/author_details.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