Use normalized data in table
This commit is contained in:
@ -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 %}
|
||||
|
Reference in New Issue
Block a user