Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
drizzydretan_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
Andre Dalwin C. Tan
drizzydretan_reading
Commits
229c0c20
Commit
229c0c20
authored
Apr 25, 2023
by
Andre Dalwin C. Tan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated CSS
parent
ff945914
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
28 additions
and
7 deletions
+28
-7
add-author.html
bookshelf/templates/bookshelf/add-author.html
+1
-1
add-book.html
bookshelf/templates/bookshelf/add-book.html
+1
-1
authors_details.html
bookshelf/templates/bookshelf/authors_details.html
+1
-1
book_details.html
bookshelf/templates/bookshelf/book_details.html
+1
-1
edit-author.html
bookshelf/templates/bookshelf/edit-author.html
+1
-1
edit-book.html
bookshelf/templates/bookshelf/edit-book.html
+1
-1
home.html
bookshelf/templates/bookshelf/home.html
+5
-0
db.sqlite3
db.sqlite3
+0
-0
wsgi.cpython-310.pyc
drizzydretan_reading/__pycache__/wsgi.cpython-310.pyc
+0
-0
style.css
static/style.css
+17
-1
No files found.
bookshelf/templates/bookshelf/add-author.html
View file @
229c0c20
...
...
@@ -7,6 +7,6 @@
<form
method=
"POST"
>
{% csrf_token %}
{{ form.as_p }}
<button
type=
"submit"
>
Submit
</button>
<button
type=
"submit"
class=
"submit"
>
Submit
</button>
</form>
{% endblock %}
bookshelf/templates/bookshelf/add-book.html
View file @
229c0c20
...
...
@@ -7,6 +7,6 @@
<form
method=
"POST"
>
{% csrf_token %}
{{ form.as_p }}
<button
type=
"submit"
>
Submit
</button>
<button
type=
"submit"
class=
"submit"
>
Submit
</button>
</form>
{% endblock %}
bookshelf/templates/bookshelf/authors_details.html
View file @
229c0c20
...
...
@@ -11,7 +11,7 @@
<li>
{{ object.bio }}
</li>
<form
action=
"./edit"
>
<button
type=
"submit"
>
Edit Author
</button>
<button
type=
"submit"
class=
"submit"
>
Edit Author
</button>
</form>
</ul>
</div>
...
...
bookshelf/templates/bookshelf/book_details.html
View file @
229c0c20
...
...
@@ -15,7 +15,7 @@
<li>
{{ object.blurb }}
</li>
<form
action=
"./edit"
>
<button
type=
"submit"
>
Edit Book
</button>
<button
type=
"submit"
class=
"submit"
>
Edit Book
</button>
</form>
</ul>
...
...
bookshelf/templates/bookshelf/edit-author.html
View file @
229c0c20
...
...
@@ -7,6 +7,6 @@
<form
method=
"POST"
>
{% csrf_token %}
{{ form.as_p }}
<button
type=
"submit"
>
Submit
</button>
<button
type=
"submit"
class=
"submit"
>
Submit
</button>
</form>
{% endblock %}
bookshelf/templates/bookshelf/edit-book.html
View file @
229c0c20
...
...
@@ -7,6 +7,6 @@
<form
method=
"POST"
>
{% csrf_token %}
{{ form.as_p }}
<button
type=
"submit"
>
Submit
</button>
<button
type=
"submit"
class=
"submit"
>
Submit
</button>
</form>
{% endblock %}
bookshelf/templates/bookshelf/home.html
View file @
229c0c20
...
...
@@ -16,4 +16,9 @@
<a
href=
"/books"
>
Books
</a>
<a
href=
"/authors"
>
Authors
</a>
</section>
<section
class=
"footer"
>
<a
href=
"/books/add"
>
Add Book
</a>
<a
href=
"/authors/add"
>
Add Author
</a>
</section>
{% endblock %}
db.sqlite3
View file @
229c0c20
No preview for this file type
drizzydretan_reading/__pycache__/wsgi.cpython-310.pyc
0 → 100644
View file @
229c0c20
File added
static/style.css
View file @
229c0c20
...
...
@@ -11,6 +11,21 @@ body {
height
:
100vh
;
width
:
100vw
;
}
.submit
{
color
:
#fcfaf4
;
border
:
2px
;
border-radius
:
20px
;
padding
:
15px
40px
;
background
:
#F67280
;
font-size
:
large
;
text-decoration
:
none
;
transition
:
scale
0.5s
ease
;
}
.submit
:hover
{
scale
:
1.2
;
}
.info
{
width
:
50vw
;
display
:
flex
;
...
...
@@ -49,4 +64,5 @@ ul > a:hover{
}
li
{
list-style-type
:
none
;
}
\ 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