2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
2017-09-09 21:59:06 +00:00
|
|
|
<h3>{{_('About')}}</h3>
|
|
|
|
<p>{{instance}} powered by
|
|
|
|
<a href="https://github.com/janeczku/calibre-web" title="Calibre-Web">Calibre Web</a>.
|
|
|
|
</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>
|
|
|
|
<tr>
|
|
|
|
<th>Python</th>
|
2017-01-28 19:16:40 +00:00
|
|
|
<td>{{versions['PythonVersion']}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
2018-07-09 16:47:36 +00:00
|
|
|
{% if 'tornado' in versions %}
|
|
|
|
<tr>
|
|
|
|
<th>Tornado web server</th>
|
|
|
|
<td>v{{versions['tornado']}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'gevent' in versions %}
|
|
|
|
<tr>
|
|
|
|
<th>Gevent web server</th>
|
|
|
|
<td>v{{versions['gevent']}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
2016-12-23 08:53:39 +00:00
|
|
|
<tr>
|
|
|
|
<th>Kindlegen</th>
|
2017-01-28 19:16:40 +00:00
|
|
|
<td>{{versions['KindlegenVersion']}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>ImageMagick</th>
|
2017-01-28 19:16:40 +00:00
|
|
|
<td>{{versions['ImageVersion']}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>PyPDF2</th>
|
2017-02-23 18:58:56 +00:00
|
|
|
<td>v{{versions['PyPdfVersion']}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-02-23 18:58:56 +00:00
|
|
|
<th>Babel</th>
|
|
|
|
<td>v{{versions['babel']}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-02-23 18:58:56 +00:00
|
|
|
<th>SqlAlchemy</th>
|
|
|
|
<td>v{{versions['sqlalchemy']}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
2017-01-28 19:54:31 +00:00
|
|
|
<tr>
|
2017-02-23 18:58:56 +00:00
|
|
|
<th>Flask</th>
|
|
|
|
<td>v{{versions['flask']}}</td>
|
2017-01-28 19:54:31 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2017-02-23 18:58:56 +00:00
|
|
|
<th>Flask Login</th>
|
|
|
|
<td>v{{versions['flasklogin']}}</td>
|
2017-01-28 19:54:31 +00:00
|
|
|
</tr>
|
2017-02-23 18:58:56 +00:00
|
|
|
<tr>
|
|
|
|
<th>Flask Principal</th>
|
|
|
|
<td>v{{versions['flask_principal']}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>ISO639 Languages</th>
|
|
|
|
<td>v{{versions['iso639']}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Requests</th>
|
|
|
|
<td>v{{versions['requests']}}</td>
|
|
|
|
</tr>
|
2017-02-25 08:02:59 +00:00
|
|
|
<tr>
|
|
|
|
<th>SQlite</th>
|
|
|
|
<td>v{{versions['sqlite']}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Pysqlite</th>
|
|
|
|
<td>v{{versions['pysqlite']}}</td>
|
|
|
|
</tr>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-08-02 18:59:11 +00:00
|
|
|
{% endblock %}
|