Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
migs_atienza_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
Migs Atienza
migs_atienza_reading
Commits
6439acda
Commit
6439acda
authored
Apr 11, 2023
by
Migs Atienza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished home.html
parent
3dc59fda
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
13 deletions
+14
-13
views.cpython-39.pyc
...tienza_reading/bookshelf/__pycache__/views.cpython-39.pyc
+0
-0
home.html
migs_atienza_reading/bookshelf/templates/bookshelf/home.html
+12
-0
home.html
migs_atienza_reading/bookshelf/templates/home.html
+0
-11
views.py
migs_atienza_reading/bookshelf/views.py
+1
-1
base.html
migs_atienza_reading/templates/base.html
+1
-1
No files found.
migs_atienza_reading/bookshelf/__pycache__/views.cpython-39.pyc
View file @
6439acda
No preview for this file type
migs_atienza_reading/bookshelf/templates/bookshelf/home.html
0 → 100644
View file @
6439acda
{% extends 'base.html' %}
{% block title %}My Favorite Books
&
Authors{% endblock %}
{% block heading %}
<center>
Welcome to Migs' Database of Favorite Books
&
Authors!
</center>
{% endblock %}
{% block content %}
<center>
The books listed here consist of story-driven, action adventure titles with
<br/>
interesting characters. While I haven't been reading recently, the database is made up of books I enjoyed
<br/>
a while back. An author I enjoy here would be Rick Riordan and his Percy Jackson series as I was
<br/>
immersed with the fantasy world he made which utilized Greek myths and stories.
</center>
{% endblock %}
{% block links %}
<center><br/><br/><br/><br/><br/>
<a
href=
"books"
>
Books
</a>
<a
href=
"authors"
>
Authors
</a></center>
{% endblock %}
migs_atienza_reading/bookshelf/templates/home.html
deleted
100644 → 0
View file @
3dc59fda
{% extends 'base.html' %}
{% block title %}My Favorite Books
&
Authors{% endblock %}
{% block heading %}Welcome to Migs' Database of Favorite Books
&
Authors!{% endblock %}
{% block content %}The books listed here consist of story-driven, action adventure titles with
interesting characters. While I haven't been reading recently, the database is made up of books I enjoyed
a while back. An author I enjoy here would be Rick Riordan and his Percy Jackson series as I was
immersed with the fantasy world he made which utilized Greek myths and stories.{% endblock %}
<div>
<a
href=
"/books"
>
Books
</a>
<a
href=
"/authors"
>
Authors
</a>
</div>
migs_atienza_reading/bookshelf/views.py
View file @
6439acda
...
@@ -6,5 +6,5 @@ def index(request):
...
@@ -6,5 +6,5 @@ def index(request):
return
request
(
'Hello World! This came from the index view'
)
return
request
(
'Hello World! This came from the index view'
)
def
home_view
(
request
):
def
home_view
(
request
):
return
render
(
request
,
'home.html'
)
return
render
(
request
,
'
bookshelf/
home.html'
)
# Create your views here.
# Create your views here.
migs_atienza_reading/templates/base.html
View file @
6439acda
...
@@ -9,6 +9,6 @@
...
@@ -9,6 +9,6 @@
<div
id=
"content"
>
<div
id=
"content"
>
{% block content %}{% endblock %}
{% block content %}{% endblock %}
</div>
</div>
{% block
script
s %}{% endblock %}
{% block
link
s %}{% endblock %}
</body>
</body>
</html>
</html>
\ 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