add signed column
This commit is contained in:
parent
d7df7e2b4e
commit
e929c12f71
@ -83,6 +83,7 @@
|
|||||||
<td class="publisher">{{publisher}}</td>
|
<td class="publisher">{{publisher}}</td>
|
||||||
<td class="year">{{year}}</td>
|
<td class="year">{{year}}</td>
|
||||||
<td class="isbn">{{isbn-13}}</td>
|
<td class="isbn">{{isbn-13}}</td>
|
||||||
|
<td class="signed">{{signed}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/books}}
|
{{/books}}
|
||||||
</table>
|
</table>
|
||||||
@ -91,7 +92,7 @@
|
|||||||
<script id="View" type="text/html">
|
<script id="View" type="text/html">
|
||||||
{{#book}}
|
{{#book}}
|
||||||
{{#coverurl}}
|
{{#coverurl}}
|
||||||
<img src="{{.}}"/>
|
<img src="{{coverurl}}"/>
|
||||||
{{/coverurl}}
|
{{/coverurl}}
|
||||||
<h1>{{title}}</h1>
|
<h1>{{title}}</h1>
|
||||||
<h2>{{author}}</h2>
|
<h2>{{author}}</h2>
|
||||||
@ -100,6 +101,9 @@
|
|||||||
{{#series}}
|
{{#series}}
|
||||||
<span>{{series}}, Volume {{volume}}</span><br/>
|
<span>{{series}}, Volume {{volume}}</span><br/>
|
||||||
{{/series}}
|
{{/series}}
|
||||||
|
{{#signed}}
|
||||||
|
<span>Signed by the author</span><br/>
|
||||||
|
{{/signed}}
|
||||||
<span>{{format}}</span>
|
<span>{{format}}</span>
|
||||||
<div class="description">
|
<div class="description">
|
||||||
<p>{{description}}</p>
|
<p>{{description}}</p>
|
||||||
|
Loading…
Reference in New Issue
Block a user