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
4f8b1371
Commit
4f8b1371
authored
Apr 25, 2023
by
Julia Anishka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added edit author page
parent
b7f60669
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
5 deletions
+23
-5
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
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+1
-0
edit-author.html
...ra_reading/bookshelf/templates/bookshelf/edit-author.html
+9
-0
urls.py
nishaespera_reading/bookshelf/urls.py
+4
-2
views.py
nishaespera_reading/bookshelf/views.py
+9
-3
db.sqlite3
nishaespera_reading/db.sqlite3
+0
-0
No files found.
nishaespera_reading/bookshelf/__pycache__/urls.cpython-310.pyc
View file @
4f8b1371
No preview for this file type
nishaespera_reading/bookshelf/__pycache__/views.cpython-310.pyc
View file @
4f8b1371
No preview for this file type
nishaespera_reading/bookshelf/templates/bookshelf/author_details.html
View file @
4f8b1371
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
{% endfor %}
{% endfor %}
</ul>
</ul>
<div
class=
"btns"
>
<div
class=
"btns"
>
<a
href=
"{{ object.get_absolute_url }}edit"
class=
"btn"
>
Edit Author
</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-author.html
0 → 100644
View file @
4f8b1371
{% extends 'base.html' %}
{% block title %} Edit Author {% 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 @
4f8b1371
from
django.urls
import
path
from
django.urls
import
path
from
.
import
views
from
.
import
views
from
.views
import
(
BooksListView
,
BooksDetailView
,
BooksCreateView
,
AuthorsListView
,
from
.views
import
(
BooksListView
,
BooksDetailView
,
BooksCreateView
,
AuthorsDetailView
,
AuthorsCreateView
,
BooksUpdateView
)
BooksUpdateView
,
AuthorsListView
,
AuthorsDetailView
,
AuthorsCreateView
,
AuthorsUpdateView
)
urlpatterns
=
[
urlpatterns
=
[
path
(
'home/'
,
views
.
homepage_view
,
name
=
'home'
),
path
(
'home/'
,
views
.
homepage_view
,
name
=
'home'
),
...
@@ -13,6 +14,7 @@ urlpatterns = [
...
@@ -13,6 +14,7 @@ urlpatterns = [
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'
),
path
(
'authors/<int:pk>/details/edit/'
,
AuthorsUpdateView
.
as_view
(),
name
=
'edit-author'
)
]
]
app_name
=
'bookshelf'
app_name
=
'bookshelf'
\ No newline at end of file
nishaespera_reading/bookshelf/views.py
View file @
4f8b1371
...
@@ -68,9 +68,9 @@ class BooksCreateView(CreateView):
...
@@ -68,9 +68,9 @@ class BooksCreateView(CreateView):
class
BooksUpdateView
(
UpdateView
):
class
BooksUpdateView
(
UpdateView
):
model
=
Books
model
=
Books
fields
=
'__all__'
template_name
=
'bookshelf/edit-book.html'
template_name
=
'bookshelf/edit-book.html'
fields
=
'__all__'
class
AuthorsListView
(
ListView
):
class
AuthorsListView
(
ListView
):
model
=
Author
model
=
Author
template_name
=
'bookshelf/authors.html'
template_name
=
'bookshelf/authors.html'
...
@@ -82,4 +82,10 @@ class AuthorsDetailView(DetailView):
...
@@ -82,4 +82,10 @@ 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
class
AuthorsUpdateView
(
UpdateView
):
model
=
Author
template_name
=
'bookshelf/edit-author.html'
fields
=
'__all__'
\ No newline at end of file
nishaespera_reading/db.sqlite3
View file @
4f8b1371
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