add signed column

This commit is contained in:
David 2017-05-14 16:10:46 -04:00
parent d7df7e2b4e
commit e929c12f71
1 changed files with 5 additions and 1 deletions

View File

@ -83,6 +83,7 @@
<td class="publisher">{{publisher}}</td>
<td class="year">{{year}}</td>
<td class="isbn">{{isbn-13}}</td>
<td class="signed">{{signed}}</td>
</tr>
{{/books}}
</table>
@ -91,7 +92,7 @@
<script id="View" type="text/html">
{{#book}}
{{#coverurl}}
<img src="{{.}}"/>
<img src="{{coverurl}}"/>
{{/coverurl}}
<h1>{{title}}</h1>
<h2>{{author}}</h2>
@ -100,6 +101,9 @@
{{#series}}
<span>{{series}}, Volume {{volume}}</span><br/>
{{/series}}
{{#signed}}
<span>Signed by the author</span><br/>
{{/signed}}
<span>{{format}}</span>
<div class="description">
<p>{{description}}</p>