2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
2017-09-09 21:59:06 +00:00
|
|
|
<h3>{{_('About')}}</h3>
|
2019-10-20 13:48:06 +00:00
|
|
|
<p>{{instance}} powered by
|
2018-08-24 13:48:09 +00:00
|
|
|
<a href="https://github.com/janeczku/calibre-web" title="Calibre-Web">Calibre-Web</a>.
|
2019-10-20 13:48:06 +00:00
|
|
|
</p>
|
2017-02-23 18:58:56 +00:00
|
|
|
<h3>{{_('Calibre library statistics')}}</h3>
|
|
|
|
<table id="stats" class="table">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>{{bookcounter}}</th>
|
|
|
|
<td>{{_('Books in this Library')}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{authorcounter}}</th>
|
|
|
|
<td>{{_('Authors in this Library')}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{categorycounter}}</th>
|
|
|
|
<td>{{_('Categories in this Library')}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{seriecounter}}</th>
|
|
|
|
<td>{{_('Series in this Library')}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-12-23 08:53:39 +00:00
|
|
|
<h3>{{_('Linked libraries')}}</h3>
|
2017-02-15 17:09:17 +00:00
|
|
|
<table id="libs" class="table">
|
2016-12-23 08:53:39 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{_('Program library')}}</th>
|
|
|
|
<th>{{_('Installed Version')}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2018-08-13 17:43:50 +00:00
|
|
|
{% for library,version in versions.items() %}
|
2016-12-23 08:53:39 +00:00
|
|
|
<tr>
|
2018-07-18 18:21:44 +00:00
|
|
|
<th>{{library}}</th>
|
2019-10-20 13:48:06 +00:00
|
|
|
<td>{{_(version)}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
2018-07-18 18:21:44 +00:00
|
|
|
{% endfor %}
|
2016-12-23 08:53:39 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-08-02 18:59:11 +00:00
|
|
|
{% endblock %}
|