Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eldondagdag_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
Eldon Dagdag
eldondagdag_reading
Commits
02e718bb
Commit
02e718bb
authored
Mar 28, 2023
by
Eldon Dagdag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented basic CSS styling to existing pages
parent
bfcb336e
Pipeline
#3047
failed with stages
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
57 additions
and
16 deletions
+57
-16
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+8
-4
authors.html
...dagdag_reading/bookshelf/templates/bookshelf/authors.html
+6
-2
book_details.html
...g_reading/bookshelf/templates/bookshelf/book_details.html
+5
-3
books.html
eldondagdag_reading/bookshelf/templates/bookshelf/books.html
+6
-2
home.html
eldondagdag_reading/bookshelf/templates/bookshelf/home.html
+4
-2
settings.py
eldondagdag_reading/eldondagdag_reading/settings.py
+1
-0
styling.css
eldondagdag_reading/static/styling.css
+25
-0
base.html
eldondagdag_reading/templates/base.html
+2
-3
No files found.
eldondagdag_reading/bookshelf/templates/bookshelf/author_details.html
View file @
02e718bb
...
...
@@ -10,13 +10,17 @@
<h3>
Biography: {{ object.bio }}
</h3>
<h2>
Books by {{ object.first_name }} {{ object.last_name }} I love:
</h2>
<ul>
{% for book in object.books.all %}
<li><a
href=
{{
book
.
get_absolute_url
}}
>
{{ book.title }}
</a></li>
{% endfor %}
</body
>
</ul
>
<br>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
<div
class=
"container space-evenly"
>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
</div>
</body>
</html>
{% endblock %}
\ No newline at end of file
eldondagdag_reading/bookshelf/templates/bookshelf/authors.html
View file @
02e718bb
...
...
@@ -5,6 +5,7 @@
<html>
<h1>
Eldon's Favorite Authors:
</h1>
<body>
<ul>
{% for object in object_list %}
<li>
<a
href=
"{{ object.get_absolute_url }}"
>
...
...
@@ -12,9 +13,12 @@
</a>
</li>
{% endfor %}
</ul>
</body>
<br>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<div
class=
"container space-evenly"
>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/books/"
>
Books
</a>
</div>
</html>
{% endblock %}
\ No newline at end of file
eldondagdag_reading/bookshelf/templates/bookshelf/book_details.html
View file @
02e718bb
...
...
@@ -12,8 +12,10 @@
<h3>
"{{ object.blurb }}"
</h3>
</body>
<br>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
<div
class=
"container space-evenly"
>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
</div>
</html>
{% endblock %}
\ No newline at end of file
eldondagdag_reading/bookshelf/templates/bookshelf/books.html
View file @
02e718bb
...
...
@@ -5,6 +5,7 @@
<html>
<h1>
Eldon's Favorite Books:
</h1>
<body>
<ul>
{% for object in object_list %}
<li>
<a
href=
"{{ object.get_absolute_url }}"
>
...
...
@@ -12,9 +13,12 @@
</a>
</li>
{% endfor %}
</ul>
</body>
<br>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
<div
class=
"container space-evenly"
>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
</div>
</html>
{% endblock %}
\ No newline at end of file
eldondagdag_reading/bookshelf/templates/bookshelf/home.html
View file @
02e718bb
...
...
@@ -5,6 +5,8 @@
<h1>
Welcome to Eldon's Database of Favorite Books and Authors!
</h1>
<h3>
Vibes only here.
</h3>
<br>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
<div
class=
"container space-evenly"
>
<a
href=
"/bookshelf/books/"
>
Books
</a>
<a
href=
"/bookshelf/authors/"
>
Authors
</a>
</div>
{% endblock %}
\ No newline at end of file
eldondagdag_reading/eldondagdag_reading/settings.py
View file @
02e718bb
...
...
@@ -123,6 +123,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL
=
'/static/'
STATICFILES_DIRS
=
[
os
.
path
.
join
(
BASE_DIR
,
'static'
)]
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
...
...
eldondagdag_reading/static/styling.css
0 → 100644
View file @
02e718bb
h1
{
color
:
rgb
(
23
,
101
,
139
);
}
h3
{
text-align
:
center
;
}
body
{
text-align
:
center
;
}
.container
{
display
:
flex
;
}
.container.container.space-evenly
{
justify-content
:
space-evenly
;
}
ul
{
display
:
inline-block
;
text-align
:
left
;
}
\ No newline at end of file
eldondagdag_reading/templates/base.html
View file @
02e718bb
{% load static %}
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width-device-width,initial-scale=1.0"
>
<link
rel=
"stylesheet"
href=
"style.css"
>
<link
rel=
"stylesheet"
href=
"{% static 'styling.css' %}"
>
<title>
{% block title %}{% endblock %}
</title>
{% block styles %}{% endblock %}
</head>
...
...
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