get rid of the alignments, I think its better all left-aligned today

This commit is contained in:
2020-12-30 16:47:06 +11:00
parent 527286886c
commit 4ab601aac5

View File

@@ -1,6 +1,6 @@
<table class="table table-sm table-striped small"> <table class="table table-sm table-striped small">
<thead> <thead>
<tr class="thead-light"><th>Title</th><th>Rating</th><th><center>Author(s)</center></th><th>Year Published</th><th>Notes</th></tr> <tr class="thead-light"><th>Title</th><th>Rating</th><th>Author(s)</th><th>Year Published</th><th>Notes</th></tr>
</thead> </thead>
<tbody> <tbody>
{% for book in sub_books %} {% for book in sub_books %}
@@ -32,7 +32,7 @@
<i class="fas fa-angle-double-down" style="font-size:10px"></i></button> <i class="fas fa-angle-double-down" style="font-size:10px"></i></button>
<a href="/book/{{book.sub_book_id}}">{{book.title}}</a> <a href="/book/{{book.sub_book_id}}">{{book.title}}</a>
</td> </td>
<td><center>{{book.rating}}</center></td><td>{{book.author}}</td><td><center>{{book.year_published}}</center></td> <td>{{book.rating}}</td><td>{{book.author}}</td><td>{{book.year_published}}</td>
<td style="width: auto;min-width:0;max-width:650px;display:inline-block;text-overflow: ellipsis; overflow: hidden;white-space: nowrap;">{{book.notes}}</td> <td style="width: auto;min-width:0;max-width:650px;display:inline-block;text-overflow: ellipsis; overflow: hidden;white-space: nowrap;">{{book.notes}}</td>
</tr> </tr>
{% endfor %} {% endfor %}