mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-15 19:55:33 +00:00
Use normalized data in table
This commit is contained in:
parent
61eaf51310
commit
6161f60695
1 changed files with 8 additions and 2 deletions
|
@ -66,6 +66,9 @@
|
|||
<th>
|
||||
{% trans "Title" %}
|
||||
</th>
|
||||
<th>
|
||||
{% trans "ISBN" %}
|
||||
</th>
|
||||
<th>
|
||||
{% trans "Author" %}
|
||||
</th>
|
||||
|
@ -82,10 +85,13 @@
|
|||
{{ item.index }}
|
||||
</td>
|
||||
<td>
|
||||
{{ item.data.Title }}
|
||||
{{ item.normalized_data.title }}
|
||||
</td>
|
||||
<td>
|
||||
{{ item.data.Author }}
|
||||
{{ item.isbn }}
|
||||
</td>
|
||||
<td>
|
||||
{{ item.normalized_data.authors }}
|
||||
</td>
|
||||
<td>
|
||||
{% if item.book %}
|
||||
|
|
Loading…
Reference in a new issue