diff --git a/app/static/css/style.css b/app/static/css/style.css index a7f6bbf..6db020c 100755 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -83,6 +83,9 @@ border-spacing:0; /* Removes the cell spacing via CSS */ font-size: 20px; cursor: pointer; } +.library_table td{ +padding: 5px; +} th.headerSortUp{ background-color: #E8E8E8!important; diff --git a/app/templates/add_book.html b/app/templates/add_book.html index 35c5c6b..cf5dac6 100755 --- a/app/templates/add_book.html +++ b/app/templates/add_book.html @@ -1,7 +1,9 @@ {% extends 'base.html' %} {% block main %} -
Currently in the library |
+ + |
---|---|
Titles: | +{{ books_all }} | +
Authors: | +{{ authors_all }} | +
Categories: | +{{ categories|replace('[', '')|replace(']', '') }} | +
Stacks: | +{{ stacks_all|replace('[', '')|replace(']', '') }} | +
From the years: | +{{earliest}} –– {{latest}} | +
Gaps in the collection: | +At least {{ books_potential }} potential books missing | +
Year published: {{ book.year_published }}
-Author(s):
+ | + |
---|---|
Year published: | +{{ book.year_published or '––'}} | +
Author(s): | +{% for author in book.authors %}
- {% endfor %}
+ {{ author.author_name }} - Category: {{ book.category }} - -Included in stack(s):
|
+
Category: | +{{ book.category }} | +
Included in stack(s): | +{% for stack in book.stacks %}
– Remove from stack{% endfor %} |
+