Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
anthonybicomong_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
Anthony Bicomong
anthonybicomong_reading
Commits
44a6fc3a
Commit
44a6fc3a
authored
Mar 28, 2023
by
Anthony Bicomong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parent
a4ee8e29
Pipeline
#3086
canceled with stages
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
8 deletions
+2
-8
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+1
-2
books_details.html
..._reading/bookshelf/templates/bookshelf/books_details.html
+1
-0
home.html
..._bicomong_reading/bookshelf/templates/bookshelf/home.html
+0
-1
base.html
anthony_bicomong_reading/templates/base.html
+0
-5
No files found.
anthony_bicomong_reading/bookshelf/templates/bookshelf/author_details.html
View file @
44a6fc3a
...
...
@@ -4,10 +4,10 @@
{% block content %}
<h1>
{{ object }}
</h1>
<b>
Age:
</b>
{{ object.age }} years old
<br>
<b>
Nationality:
</b>
{{ object.nationality }}
<br>
<b>
Biography:
</b>
{{ object.bio }}
<br>
<br>
<b>
Books by {{ object }} I love:
</b>
<ul>
{% for Books in object.booksquery.all %}
...
...
@@ -18,7 +18,6 @@
</li>
{% endfor %}
</ul>
{% endblock %}
{% block table %}
...
...
anthony_bicomong_reading/bookshelf/templates/bookshelf/books_details.html
View file @
44a6fc3a
...
...
@@ -9,6 +9,7 @@
{{ object.author }}
</a>
</h2>
<b>
Publisher:
</b>
{{ object.publisher }}
<br>
<b>
Year Published:
</b>
{{ object.year_published}}
<br>
<b>
ISBN:
</b>
{{ object.ISBN }}
<br>
...
...
anthony_bicomong_reading/bookshelf/templates/bookshelf/home.html
View file @
44a6fc3a
...
...
@@ -7,7 +7,6 @@
I should probably read more lmao
{% endblock %}
{# navigation bar block #}
{% block table %}
<td><a
href =
'../books'
>
Books
</a></td>
<td><a
href =
'../authors'
>
Authors
</a></td>
...
...
anthony_bicomong_reading/templates/base.html
View file @
44a6fc3a
...
...
@@ -5,19 +5,14 @@
</head>
<body>
{# block for content #}
<div
id=
"content"
>
{% block content %}{% endblock %}
</div>
<br>
{# block for navigation bar, app pages simply put table data for needed links #}
<table>
<tr>
{% block table %}{% endblock %}
</table>
</tr>
</body>
</html>
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