Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
fausto_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
Brendan Fausto
fausto_reading
Commits
efc2d905
Commit
efc2d905
authored
Apr 27, 2023
by
Brendan Fausto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed url error in books and authors list page
parent
3374e0f4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
authors_page.html
reading/bookshelf/templates/bookshelf/authors_page.html
+1
-1
books_page.html
reading/bookshelf/templates/bookshelf/books_page.html
+1
-1
db.sqlite3
reading/db.sqlite3
+0
-0
No files found.
reading/bookshelf/templates/bookshelf/authors_page.html
View file @
efc2d905
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
<ul>
<ul>
{% for object in authors %}
{% for object in authors %}
<li>
<li>
<a
href =
"
http://127.0.0.1:8000/authors/{{ object.get_absolute_url }}/details
"
>
{{ object.first_name }} {{ object.last_name }}
</a>
<a
href =
"
{{ object.get_absolute_url }}
"
>
{{ object.first_name }} {{ object.last_name }}
</a>
</li>
</li>
{% endfor %}
{% endfor %}
</ul>
</ul>
...
...
reading/bookshelf/templates/bookshelf/books_page.html
View file @
efc2d905
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
<ul>
<ul>
{% for object in books %}
{% for object in books %}
<li>
<li>
<a
href =
"
http://127.0.0.1:8000/books/{{ object.get_absolute_url }}/details
"
>
{{ object.title }}
</a>
<a
href =
"
{{ object.get_absolute_url }}
"
>
{{ object.title }}
</a>
</li>
</li>
{% endfor %}
{% endfor %}
</ul>
</ul>
...
...
reading/db.sqlite3
View file @
efc2d905
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