Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nishaespera_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
Julia Anishka
nishaespera_reading
Commits
d6cf867f
Commit
d6cf867f
authored
Apr 25, 2023
by
Julia Anishka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new book template and created addbook function
parent
6db6428a
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
38 additions
and
3 deletions
+38
-3
forms.cpython-310.pyc
...spera_reading/bookshelf/__pycache__/forms.cpython-310.pyc
+0
-0
urls.cpython-310.pyc
...espera_reading/bookshelf/__pycache__/urls.cpython-310.pyc
+0
-0
views.cpython-310.pyc
...spera_reading/bookshelf/__pycache__/views.cpython-310.pyc
+0
-0
forms.py
nishaespera_reading/bookshelf/forms.py
+7
-0
add-book.html
...spera_reading/bookshelf/templates/bookshelf/add-book.html
+9
-0
home.html
nishaespera_reading/bookshelf/templates/bookshelf/home.html
+2
-2
urls.py
nishaespera_reading/bookshelf/urls.py
+1
-1
views.py
nishaespera_reading/bookshelf/views.py
+19
-0
db.sqlite3
nishaespera_reading/db.sqlite3
+0
-0
No files found.
nishaespera_reading/bookshelf/__pycache__/forms.cpython-310.pyc
0 → 100644
View file @
d6cf867f
File added
nishaespera_reading/bookshelf/__pycache__/urls.cpython-310.pyc
View file @
d6cf867f
No preview for this file type
nishaespera_reading/bookshelf/__pycache__/views.cpython-310.pyc
View file @
d6cf867f
No preview for this file type
nishaespera_reading/bookshelf/forms.py
0 → 100644
View file @
d6cf867f
from
django.forms
import
ModelForm
from
.models
import
Books
class
BooksForm
(
ModelForm
):
class
Meta
:
model
=
Books
fields
=
'__all__'
\ No newline at end of file
nishaespera_reading/bookshelf/templates/bookshelf/add-book.html
0 → 100644
View file @
d6cf867f
{% extends 'base.html' %}
{% block title %} Add New Book {% endblock %}
{% block body %}
<form
method=
'POST'
>
{% csrf_token %}
{{ form }}
<input
type=
'Submit'
value=
'Add Book'
>
</form>
{% endblock %}
\ No newline at end of file
nishaespera_reading/bookshelf/templates/bookshelf/home.html
View file @
d6cf867f
...
...
@@ -19,8 +19,8 @@
<div
class=
"btns"
>
<a
href=
"/books/"
class=
"btn"
>
Books
</a>
<a
href=
"/authors/"
class=
"btn"
>
Authors
</a>
<a
href=
"books/add"
class=
"btn"
>
A
uthors
</a>
<a
href=
"authors/add"
class=
"btn"
>
A
uthors
</a>
<a
href=
"books/add"
class=
"btn"
>
A
dd Book
</a>
<a
href=
"authors/add"
class=
"btn"
>
A
dd Author
</a>
</div>
{% endblock %}
\ No newline at end of file
nishaespera_reading/bookshelf/urls.py
View file @
d6cf867f
...
...
@@ -8,7 +8,7 @@ urlpatterns = [
path
(
'home/'
,
views
.
homepage_view
,
name
=
'home'
),
path
(
'books/'
,
BooksListView
.
as_view
(),
name
=
'books'
),
path
(
'books/<int:pk>/details/'
,
BooksDetailView
.
as_view
(),
name
=
'book_details'
),
path
(
'books/add/'
,
BooksCreateView
.
as_view
(),
name
=
'add-book'
),
path
(
'
home/
books/add/'
,
BooksCreateView
.
as_view
(),
name
=
'add-book'
),
path
(
'authors/'
,
AuthorsListView
.
as_view
(),
name
=
'authors'
),
path
(
'authors/<int:pk>/details/'
,
AuthorsDetailView
.
as_view
(),
name
=
'author_details'
)
]
...
...
nishaespera_reading/bookshelf/views.py
View file @
d6cf867f
...
...
@@ -6,6 +6,7 @@ from django.views.generic.detail import DetailView
from
django.views.generic.edit
import
CreateView
from
.models
import
Author
,
Books
from
.forms
import
BooksForm
def
homepage_view
(
request
):
authors
=
Author
.
objects
.
all
()
...
...
@@ -16,6 +17,24 @@ def homepage_view(request):
}
return
render
(
request
,
'bookshelf/home.html'
,
context
)
def
add_book_view
(
request
):
if
request
.
method
==
'POST'
:
form
=
BooksForm
(
request
.
POST
)
if
form
.
is_valid
():
return
HttpResponse
(
'Title: {}'
.
format
(
title
=
form
.
cleaned_data
[
'title'
],
author
=
form
.
cleaned_data
[
'author'
],
year_published
=
form
.
cleaned_data
[
'year_published'
],
ISBN
=
form
.
cleaned_data
[
'ISBN'
],
blurb
=
form
.
cleaned_data
[
'blurb'
]
)
)
else
:
return
render
(
request
,
'bookshelf/add-book.html'
,
{
'form'
:
form
})
else
:
form
=
BooksForm
()
return
render
(
request
,
'bookshelf/add-book.html'
,
{
'form'
:
form
})
class
BooksListView
(
ListView
):
model
=
Books
template_name
=
'bookshelf/books.html'
...
...
nishaespera_reading/db.sqlite3
View file @
d6cf867f
No preview for this file type
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