Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
justinreyes_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
Justin Reyes
justinreyes_reading
Commits
215eac48
Commit
215eac48
authored
Mar 27, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added HTML class names for easier CSS styling
parent
03e3540e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+3
-3
authors.html
...nreyes_reading/bookshelf/templates/bookshelf/authors.html
+1
-1
book_details.html
...s_reading/bookshelf/templates/bookshelf/book_details.html
+2
-2
books.html
justinreyes_reading/bookshelf/templates/bookshelf/books.html
+2
-2
home.html
justinreyes_reading/bookshelf/templates/bookshelf/home.html
+1
-1
db.sqlite3
justinreyes_reading/db.sqlite3
+0
-0
No files found.
justinreyes_reading/bookshelf/templates/bookshelf/author_details.html
View file @
215eac48
...
...
@@ -5,7 +5,7 @@
<div
class=
"author-details"
>
<h1>
{{ object }}
</h1>
<ul>
<ul
class=
"more-details"
>
<li>
{{ object.age }}
</li>
<li>
{{ object.nationality }}
</li>
<li>
{{ object.bio }}
</li>
...
...
@@ -13,7 +13,7 @@
</div>
<div
class=
"author-books"
>
<h1>
Books by {{ object }} I love
</h1>
<h1>
Books by {{ object }} I love
:
</h1>
<ul>
{% for book in object.books_set.all %}
<a
href=
"{{book.get_absolute_url}}"
><li>
{{book.title}}
</li></a>
...
...
@@ -21,7 +21,7 @@
</ul>
</div>
<ul>
<ul
class=
"footer"
>
<li><a
href=
"/home"
>
Home
</a></li>
<li><a
href=
"/books"
>
Books
</a></li>
<li><a
href=
"/authors"
>
Authors
</a></li>
...
...
justinreyes_reading/bookshelf/templates/bookshelf/authors.html
View file @
215eac48
...
...
@@ -10,7 +10,7 @@
{% endfor %}
</ul>
<ul>
<ul
class=
"footer"
>
<li><a
href=
"/home"
>
Home
</a></li>
<li><a
href=
"/books"
>
Books
</a></li>
</ul>
...
...
justinreyes_reading/bookshelf/templates/bookshelf/book_details.html
View file @
215eac48
...
...
@@ -5,7 +5,7 @@
<div
class=
"book-details"
>
<h1>
{{ object.title }}
</h1>
<ul>
<ul
class=
"more-details"
>
<a
href=
"{{object.author.get_absolute_url}}"
><li>
{{ object.author }}
</li></a>
<li>
{{ object.publisher }}
</li>
<li>
{{ object.year_published }}
</li>
...
...
@@ -14,7 +14,7 @@
</ul>
</div>
<ul>
<ul
class=
"footer"
>
<li><a
href=
"/home"
>
Home
</a></li>
<li><a
href=
"/books"
>
Books
</a></li>
<li><a
href=
"/authors"
>
Authors
</a></li>
...
...
justinreyes_reading/bookshelf/templates/bookshelf/books.html
View file @
215eac48
...
...
@@ -3,14 +3,14 @@
{% block title %} My Favorite Books {% endblock %}
{% block content %}
<h1>
Justin' Favorite Books
</h1>
<h1>
Justin'
s
Favorite Books
</h1>
<ul>
{% for object in object_list %}
<a
href=
"{{object.get_absolute_url}}"
><li>
{{object.title}}
</li></a>
{% endfor %}
</ul>
<ul>
<ul
class=
"footer"
>
<li><a
href=
"/home"
>
Home
</a></li>
<li><a
href=
"/authors"
>
Authors
</a></li>
</ul>
...
...
justinreyes_reading/bookshelf/templates/bookshelf/home.html
View file @
215eac48
...
...
@@ -6,7 +6,7 @@
love reading horror, biographies, and more. Thanks!
</p>
<ul>
<ul
class=
"footer"
>
<li><a
href=
"/books"
>
Books
</a></li>
<li><a
href=
"/authors"
>
Authors
</a></li>
</ul>
...
...
justinreyes_reading/db.sqlite3
View file @
215eac48
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