Use normalized data in table
This commit is contained in:
parent
61eaf51310
commit
6161f60695
|
@ -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 New Issue