Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rjconanan_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
Raul Jarod Conanan
rjconanan_reading
Commits
54e0caad
Commit
54e0caad
authored
Apr 25, 2023
by
RJC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added authorcreateview to views.py in bookshelf module
parent
069233c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
add-author.html
bookshelf/templates/bookshelf/add-author.html
+11
-0
views.py
bookshelf/views.py
+15
-0
No files found.
bookshelf/templates/bookshelf/add-author.html
0 → 100644
View file @
54e0caad
{% extends 'base.html' %}
{% block title %}Add New Author{% endblock %}
{% block header %}Add New Author{% endblock %}
{% block content %}
<form
method=
"post"
>
{% csrf_token %}
{{ form.as_p }}
<input
type=
"submit"
value=
"Add Author"
>
</form>
{% endblock %}
\ No newline at end of file
bookshelf/views.py
View file @
54e0caad
from
django.shortcuts
import
render
from
django.views
import
generic
from
django.urls
import
reverse
from
.models
import
Books
,
Author
# Create your views here.
...
...
@@ -21,6 +22,10 @@ class BookCreateView(generic.CreateView):
fields
=
'__all__'
template_name
=
'bookshelf/add-book.html'
def
get_success_url
(
self
):
return
reverse
(
'bookshelf:bookdetailview'
,
kwargs
=
{
'pk'
:
self
.
object
.
id
},
current_app
=
self
.
request
.
resolver_match
.
namespace
)
class
BookDetailView
(
generic
.
DetailView
):
model
=
Books
...
...
@@ -36,6 +41,16 @@ class AuthorListView(generic.ListView):
context_object_name
=
'authors'
class
AuthorCreateView
(
generic
.
CreateView
):
model
=
Author
fields
=
'__all__'
template_name
=
'bookshelf/add-author.html'
def
get_success_url
(
self
):
return
reverse
(
'bookshelf:authordetailview'
,
kwargs
=
{
'pk'
:
self
.
object
.
id
},
current_app
=
self
.
request
.
resolver_match
.
namespace
)
class
AuthorDetailView
(
generic
.
DetailView
):
model
=
Author
template_name
=
'bookshelf/author_detail.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