Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gabigarrero_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
Gabriel G. Garrero
gabigarrero_reading
Commits
7bc750cd
Commit
7bc750cd
authored
Apr 25, 2023
by
Gabriel G. Garrero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edited the urls of all pages (removed /bookshelf/)
parent
b846171e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
15 deletions
+15
-15
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+3
-3
authors.html
...arrero_reading/bookshelf/templates/bookshelf/authors.html
+2
-2
book_details.html
...o_reading/bookshelf/templates/bookshelf/book_details.html
+3
-3
books.html
gabigarrero_reading/bookshelf/templates/bookshelf/books.html
+2
-2
home.html
gabigarrero_reading/bookshelf/templates/bookshelf/home.html
+4
-4
db.sqlite3
gabigarrero_reading/db.sqlite3
+0
-0
urls.cpython-310.pyc
...ding/gabigarrero_reading/__pycache__/urls.cpython-310.pyc
+0
-0
urls.py
gabigarrero_reading/gabigarrero_reading/urls.py
+1
-1
No files found.
gabigarrero_reading/bookshelf/templates/bookshelf/author_details.html
View file @
7bc750cd
...
...
@@ -27,9 +27,9 @@
</ul>
<div
class =
"links"
>
<a
class =
"flex-items"
href =
'/
bookshelf/
home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/books
helf/books
/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/
bookshelf/
authors/'
>
Authors
</a>
<a
class =
"flex-items"
href =
'/home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/books/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/authors/'
>
Authors
</a>
</div>
{% endblock %}
\ No newline at end of file
gabigarrero_reading/bookshelf/templates/bookshelf/authors.html
View file @
7bc750cd
...
...
@@ -17,8 +17,8 @@
</ul>
<div
class =
"links"
>
<a
class =
"flex-items"
href =
'/
bookshelf/
home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/books
helf/books
/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/books/'
>
Books
</a>
</div>
{% endblock %}
\ No newline at end of file
gabigarrero_reading/bookshelf/templates/bookshelf/book_details.html
View file @
7bc750cd
...
...
@@ -17,8 +17,8 @@
</form>
<div
class =
"links"
>
<a
class =
"flex-items"
href =
'/
bookshelf/
home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/books
helf/books
/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/
bookshelf/
authors/'
>
Authors
</a>
<a
class =
"flex-items"
href =
'/home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/books/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/authors/'
>
Authors
</a>
</div>
{% endblock %}
\ No newline at end of file
gabigarrero_reading/bookshelf/templates/bookshelf/books.html
View file @
7bc750cd
...
...
@@ -16,8 +16,8 @@
</ul>
<div
class =
"links"
>
<a
class =
"flex-items"
href =
'/
bookshelf/
home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/
bookshelf/
authors/'
>
Authors
</a>
<a
class =
"flex-items"
href =
'/home/'
>
Home
</a>
<a
class =
"flex-items"
href =
'/authors/'
>
Authors
</a>
</div>
{% endblock %}
\ No newline at end of file
gabigarrero_reading/bookshelf/templates/bookshelf/home.html
View file @
7bc750cd
...
...
@@ -10,13 +10,13 @@
<p>
I don't actually read books so I ended up just putting some of the most famous books and authors for my data.
</p>
<div
class =
"links"
>
<a
class =
"flex-items"
href =
'/books
helf/books
/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/
bookshelf/
authors/'
>
Authors
</a>
<a
class =
"flex-items"
href =
'/books/'
>
Books
</a>
<a
class =
"flex-items"
href =
'/authors/'
>
Authors
</a>
</div>
<div
class =
"add-links"
>
<a
class =
"flex-items"
href =
'/books
helf/books
/add'
>
Add Book
</a>
<a
class =
"flex-items"
href =
'/
bookshelf/
authors/add'
>
Add Author
</a>
<a
class =
"flex-items"
href =
'/books/add'
>
Add Book
</a>
<a
class =
"flex-items"
href =
'/authors/add'
>
Add Author
</a>
</div>
{% endblock %}
\ No newline at end of file
gabigarrero_reading/db.sqlite3
View file @
7bc750cd
No preview for this file type
gabigarrero_reading/gabigarrero_reading/__pycache__/urls.cpython-310.pyc
View file @
7bc750cd
No preview for this file type
gabigarrero_reading/gabigarrero_reading/urls.py
View file @
7bc750cd
...
...
@@ -17,6 +17,6 @@ from django.contrib import admin
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'
bookshelf/'
,
include
(
'bookshelf.urls'
,
namespace
=
"bookshelf"
)),
path
(
'
'
,
include
(
'bookshelf.urls'
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
]
\ No newline at end of file
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