Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mattarpas_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
Matthew Karl David P. Arpas
mattarpas_reading
Commits
4a2fc8d3
Commit
4a2fc8d3
authored
Mar 28, 2023
by
Matthew Karl David P. Arpas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up formatting by removing a <br> from right after the headers of each template
parent
9ccada89
Pipeline
#3091
failed with stages
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
authors.html
mattarpas_reading/bookshelf/templates/bookshelf/authors.html
+1
-1
book_details.html
...s_reading/bookshelf/templates/bookshelf/book_details.html
+1
-1
books.html
mattarpas_reading/bookshelf/templates/bookshelf/books.html
+1
-1
home.html
mattarpas_reading/bookshelf/templates/bookshelf/home.html
+1
-1
No files found.
mattarpas_reading/bookshelf/templates/bookshelf/authors.html
View file @
4a2fc8d3
...
...
@@ -3,7 +3,7 @@
{% block title %}My Favorite Authors{% endblock %}
{% block content %}
<h1>
Matt's Favorite Authors:
<br><
br><
/h1>
<h1>
Matt's Favorite Authors:
<br></h1>
<ul
style=
"list-style-type:circle"
>
{% for author in authors %}
<li><a
href=
"{{ author.get_absolute_url }}"
>
{{ author.first_name }}
{{ author.last_name }}
</a></li>
...
...
mattarpas_reading/bookshelf/templates/bookshelf/book_details.html
View file @
4a2fc8d3
...
...
@@ -3,7 +3,7 @@
{% block title %}{{ book.title }}{% endblock %}
{% block content %}
<h1>
{{ book.title }}
<br><
br><
/h1>
<h1>
{{ book.title }}
<br></h1>
<p><a
href=
"{{ book.author.get_absolute_url }}"
>
{{ book.author }}
</a><br></p>
<p>
{{ book.publisher }}
<br></p>
<p>
{{ book.year_published }}
<br></p>
...
...
mattarpas_reading/bookshelf/templates/bookshelf/books.html
View file @
4a2fc8d3
...
...
@@ -3,7 +3,7 @@
{% block title %}My Favorite Books{% endblock %}
{% block content %}
<h1>
Matt's Favorite Books:
<br><
br><
/h1>
<h1>
Matt's Favorite Books:
<br></h1>
<ul
style=
"list-style-type:circle"
>
{% for book in books %}
<li><a
href=
"{{ book.get_absolute_url }}"
>
{{ book.title }}
</a></li>
...
...
mattarpas_reading/bookshelf/templates/bookshelf/home.html
View file @
4a2fc8d3
...
...
@@ -3,7 +3,7 @@
{% block title %}My Favorite Books
&
Authors{% endblock %}
{% block content %}
<h1>
Welcome to Matt's Database of Favorite Books and Authors!
<br><
br><
/h1>
<h1>
Welcome to Matt's Database of Favorite Books and Authors!
<br></h1>
<p>
I like fantasy, sci-fi, and detective novels written by (perhaps) depressed and somewhat manic authors!
<br></p>
<a
href=
"http://localhost:8000/books/"
>
Books
</a>
<a
href=
"http://localhost:8000/authors/"
>
Authors
</a>
...
...
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