Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elaizabolislis_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
Elaiza Bolislis
elaizabolislis_reading
Commits
f9d25cdc
Commit
f9d25cdc
authored
Apr 25, 2023
by
Elaiza Bolislis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified templates and created a style.css file for the site's styling.
parent
911ccf94
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
add-author.html
...lis_reading/bookshelf/templates/bookshelf/add-author.html
+1
-1
add-book.html
...islis_reading/bookshelf/templates/bookshelf/add-book.html
+1
-1
style.css
elaizabolislis_reading/static/style.css
+13
-0
base.html
elaizabolislis_reading/templates/base.html
+2
-1
No files found.
elaizabolislis_reading/bookshelf/templates/bookshelf/add-author.html
View file @
f9d25cdc
...
@@ -7,6 +7,6 @@
...
@@ -7,6 +7,6 @@
<form
method=
"post"
>
<form
method=
"post"
>
{% csrf_token %}
{% csrf_token %}
{{ form.as_p }}
{{ form.as_p }}
<
input
type=
"submit"
value=
"Add Author"
>
<
p><input
type=
"submit"
value=
"Add Author"
></p
>
</form>
</form>
{% endblock %}
{% endblock %}
\ No newline at end of file
elaizabolislis_reading/bookshelf/templates/bookshelf/add-book.html
View file @
f9d25cdc
...
@@ -7,6 +7,6 @@
...
@@ -7,6 +7,6 @@
<form
method=
"post"
>
<form
method=
"post"
>
{% csrf_token %}
{% csrf_token %}
{{ form.as_p }}
{{ form.as_p }}
<
input
type=
"submit"
value=
"Add Book"
>
<
p><input
type=
"submit"
value=
"Add Book"
></p
>
</form>
</form>
{% endblock %}
{% endblock %}
\ No newline at end of file
elaizabolislis_reading/static/style.css
0 → 100644
View file @
f9d25cdc
body
{
font-family
:
'Courier New'
;
text-align
:
center
;
}
h1
{
color
:
rgb
(
1
,
83
,
1
);
font-size
:
250%
;
}
ul
li
{
list-style-position
:
inside
;
}
\ No newline at end of file
elaizabolislis_reading/templates/base.html
View file @
f9d25cdc
{% load static %}
<!DOCTYPE html>
<!DOCTYPE html>
<html
lang=
""
>
<html
lang=
""
>
<head>
<head>
<link
rel=
"stylesheet"
href=
"
style.css
"
>
<link
rel=
"stylesheet"
href=
"
{% static 'style.css' %}
"
>
<title>
{% block title %}{% endblock %}
</title>
<title>
{% block title %}{% endblock %}
</title>
</head>
</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