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
90517f7d
Commit
90517f7d
authored
Apr 25, 2023
by
Julia Anishka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new author page
parent
d6cf867f
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
42 additions
and
4 deletions
+42
-4
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
+6
-1
add-author.html
...era_reading/bookshelf/templates/bookshelf/add-author.html
+9
-0
urls.py
nishaespera_reading/bookshelf/urls.py
+3
-2
views.py
nishaespera_reading/bookshelf/views.py
+24
-1
db.sqlite3
nishaespera_reading/db.sqlite3
+0
-0
No files found.
nishaespera_reading/bookshelf/__pycache__/forms.cpython-310.pyc
View file @
90517f7d
No preview for this file type
nishaespera_reading/bookshelf/__pycache__/urls.cpython-310.pyc
View file @
90517f7d
No preview for this file type
nishaespera_reading/bookshelf/__pycache__/views.cpython-310.pyc
View file @
90517f7d
No preview for this file type
nishaespera_reading/bookshelf/forms.py
View file @
90517f7d
from
django.forms
import
ModelForm
from
.models
import
Books
from
.models
import
Books
,
Author
class
BooksForm
(
ModelForm
):
class
Meta
:
model
=
Books
fields
=
'__all__'
class
AuthorForm
(
ModelForm
):
class
Meta
:
model
=
Author
fields
=
'__all__'
\ No newline at end of file
nishaespera_reading/bookshelf/templates/bookshelf/add-author.html
0 → 100644
View file @
90517f7d
{% extends 'base.html' %}
{% block title %} Add New Author {% endblock %}
{% block body %}
<form
method=
'POST'
>
{% csrf_token %}
{{ form }}
<input
type=
'Submit'
value=
'Add Author'
>
</form>
{% endblock %}
\ No newline at end of file
nishaespera_reading/bookshelf/urls.py
View file @
90517f7d
...
...
@@ -2,7 +2,7 @@ from django.urls import path
from
.
import
views
from
.views
import
(
BooksListView
,
BooksDetailView
,
BooksCreateView
,
AuthorsListView
,
AuthorsDetailView
,
)
AuthorsDetailView
,
AuthorsCreateView
,
)
urlpatterns
=
[
path
(
'home/'
,
views
.
homepage_view
,
name
=
'home'
),
...
...
@@ -10,7 +10,8 @@ urlpatterns = [
path
(
'books/<int:pk>/details/'
,
BooksDetailView
.
as_view
(),
name
=
'book_details'
),
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'
)
path
(
'authors/<int:pk>/details/'
,
AuthorsDetailView
.
as_view
(),
name
=
'author_details'
),
path
(
'home/authors/add/'
,
AuthorsCreateView
.
as_view
(),
name
=
'add-author'
),
]
app_name
=
'bookshelf'
\ No newline at end of file
nishaespera_reading/bookshelf/views.py
View file @
90517f7d
...
...
@@ -6,7 +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
from
.forms
import
BooksForm
,
AuthorForm
def
homepage_view
(
request
):
authors
=
Author
.
objects
.
all
()
...
...
@@ -35,6 +35,24 @@ def add_book_view(request):
form
=
BooksForm
()
return
render
(
request
,
'bookshelf/add-book.html'
,
{
'form'
:
form
})
def
add_author_view
(
request
):
if
request
.
method
==
'POST'
:
form
=
AuthorForm
(
request
.
POST
)
if
form
.
is_valid
():
return
HttpResponse
(
'Title: {}'
.
format
(
first_name
=
form
.
cleaned_data
[
'first_name'
],
last_name
=
form
.
cleaned_data
[
'last_name'
],
age
=
form
.
cleaned_data
[
'age'
],
nationality
=
form
.
cleaned_data
[
'nationality'
],
bio
=
form
.
cleaned_data
[
'bio'
]
)
)
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'
...
...
@@ -56,3 +74,8 @@ class AuthorsDetailView(DetailView):
model
=
Author
template_name
=
'bookshelf/author_details.html'
class
AuthorsCreateView
(
CreateView
):
model
=
Author
template_name
=
'bookshelf/add-author.html'
fields
=
'__all__'
nishaespera_reading/db.sqlite3
View file @
90517f7d
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