mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-28 18:08:35 +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>
|
<th>
|
||||||
{% trans "Title" %}
|
{% trans "Title" %}
|
||||||
</th>
|
</th>
|
||||||
|
<th>
|
||||||
|
{% trans "ISBN" %}
|
||||||
|
</th>
|
||||||
<th>
|
<th>
|
||||||
{% trans "Author" %}
|
{% trans "Author" %}
|
||||||
</th>
|
</th>
|
||||||
|
@ -82,10 +85,13 @@
|
||||||
{{ item.index }}
|
{{ item.index }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ item.data.Title }}
|
{{ item.normalized_data.title }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ item.data.Author }}
|
{{ item.isbn }}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{ item.normalized_data.authors }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{% if item.book %}
|
{% if item.book %}
|
||||||
|
|
Loading…
Reference in a new issue