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
b7f60669
Commit
b7f60669
authored
Apr 25, 2023
by
Julia Anishka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added eedit book page
parent
90517f7d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
4 deletions
+19
-4
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
book_details.html
...a_reading/bookshelf/templates/bookshelf/book_details.html
+1
-0
edit-book.html
...pera_reading/bookshelf/templates/bookshelf/edit-book.html
+9
-0
urls.py
nishaespera_reading/bookshelf/urls.py
+2
-1
views.py
nishaespera_reading/bookshelf/views.py
+7
-3
db.sqlite3
nishaespera_reading/db.sqlite3
+0
-0
No files found.
nishaespera_reading/bookshelf/__pycache__/urls.cpython-310.pyc
View file @
b7f60669
No preview for this file type
nishaespera_reading/bookshelf/__pycache__/views.cpython-310.pyc
View file @
b7f60669
No preview for this file type
nishaespera_reading/bookshelf/templates/bookshelf/book_details.html
View file @
b7f60669
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
<h4>
ISBN: {{ object.ISBN }}
</h4>
<h4>
ISBN: {{ object.ISBN }}
</h4>
<p>
Blurb: {{ object.blurb }}
</p>
<p>
Blurb: {{ object.blurb }}
</p>
<div
class=
"btns"
>
<div
class=
"btns"
>
<a
href=
"{{ object.get_absolute_url }}edit"
class=
"btn"
>
Edit Book
</a>
<a
href=
"/home/"
class=
"btn"
>
Home
</a>
<a
href=
"/home/"
class=
"btn"
>
Home
</a>
<a
href=
"/books/"
class=
"btn"
>
Books
</a>
<a
href=
"/books/"
class=
"btn"
>
Books
</a>
<a
href=
"/authors/"
class=
"btn"
>
Authors
</a>
<a
href=
"/authors/"
class=
"btn"
>
Authors
</a>
...
...
nishaespera_reading/bookshelf/templates/bookshelf/edit-book.html
0 → 100644
View file @
b7f60669
{% extends 'base.html' %}
{% block title %} Edit Book {% endblock %}
{% block body %}
<form
method=
'POST'
>
{% csrf_token %}
{{ form }}
<input
type=
'Submit'
value=
'Save Changes'
>
</form>
{% endblock %}
\ No newline at end of file
nishaespera_reading/bookshelf/urls.py
View file @
b7f60669
...
@@ -2,13 +2,14 @@ from django.urls import path
...
@@ -2,13 +2,14 @@ from django.urls import path
from
.
import
views
from
.
import
views
from
.views
import
(
BooksListView
,
BooksDetailView
,
BooksCreateView
,
AuthorsListView
,
from
.views
import
(
BooksListView
,
BooksDetailView
,
BooksCreateView
,
AuthorsListView
,
AuthorsDetailView
,
AuthorsCreateView
,
)
AuthorsDetailView
,
AuthorsCreateView
,
BooksUpdateView
)
urlpatterns
=
[
urlpatterns
=
[
path
(
'home/'
,
views
.
homepage_view
,
name
=
'home'
),
path
(
'home/'
,
views
.
homepage_view
,
name
=
'home'
),
path
(
'books/'
,
BooksListView
.
as_view
(),
name
=
'books'
),
path
(
'books/'
,
BooksListView
.
as_view
(),
name
=
'books'
),
path
(
'books/<int:pk>/details/'
,
BooksDetailView
.
as_view
(),
name
=
'book_details'
),
path
(
'books/<int:pk>/details/'
,
BooksDetailView
.
as_view
(),
name
=
'book_details'
),
path
(
'home/books/add/'
,
BooksCreateView
.
as_view
(),
name
=
'add-book'
),
path
(
'home/books/add/'
,
BooksCreateView
.
as_view
(),
name
=
'add-book'
),
path
(
'books/<int:pk>/details/edit/'
,
BooksUpdateView
.
as_view
(),
name
=
'edit-book'
),
path
(
'authors/'
,
AuthorsListView
.
as_view
(),
name
=
'authors'
),
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'
),
path
(
'home/authors/add/'
,
AuthorsCreateView
.
as_view
(),
name
=
'add-author'
),
...
...
nishaespera_reading/bookshelf/views.py
View file @
b7f60669
...
@@ -3,7 +3,7 @@ from django.http import HttpResponse
...
@@ -3,7 +3,7 @@ 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
from
django.views.generic.edit
import
CreateView
from
django.views.generic.edit
import
CreateView
,
UpdateView
from
.models
import
Author
,
Books
from
.models
import
Author
,
Books
from
.forms
import
BooksForm
,
AuthorForm
from
.forms
import
BooksForm
,
AuthorForm
...
@@ -66,6 +66,11 @@ class BooksCreateView(CreateView):
...
@@ -66,6 +66,11 @@ class BooksCreateView(CreateView):
template_name
=
'bookshelf/add-book.html'
template_name
=
'bookshelf/add-book.html'
fields
=
'__all__'
fields
=
'__all__'
class
BooksUpdateView
(
UpdateView
):
model
=
Books
fields
=
'__all__'
template_name
=
'bookshelf/edit-book.html'
class
AuthorsListView
(
ListView
):
class
AuthorsListView
(
ListView
):
model
=
Author
model
=
Author
template_name
=
'bookshelf/authors.html'
template_name
=
'bookshelf/authors.html'
...
@@ -77,5 +82,4 @@ class AuthorsDetailView(DetailView):
...
@@ -77,5 +82,4 @@ class AuthorsDetailView(DetailView):
class
AuthorsCreateView
(
CreateView
):
class
AuthorsCreateView
(
CreateView
):
model
=
Author
model
=
Author
template_name
=
'bookshelf/add-author.html'
template_name
=
'bookshelf/add-author.html'
fields
=
'__all__'
fields
=
'__all__'
\ No newline at end of file
nishaespera_reading/db.sqlite3
View file @
b7f60669
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