2015-08-02 18:59:11 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
2020-02-03 03:22:00 +00:00
|
|
|
<h3>{{_('About')}} {{instance}}</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>
|
2020-02-03 03:22:00 +00:00
|
|
|
<h3>{{_('Library Statistics')}}</h3>
|
2017-02-23 18:58:56 +00:00
|
|
|
<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>
|
2023-02-04 10:18:43 +00:00
|
|
|
{% if current_user.role_admin() %}
|
2020-12-11 19:54:24 +00:00
|
|
|
<h3>{{_('System Statistics')}}</h3>
|
2017-02-15 17:09:17 +00:00
|
|
|
<table id="libs" class="table">
|
2016-12-23 08:53:39 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2022-05-01 10:36:35 +00:00
|
|
|
<th>{{_('Program')}}</th>
|
2016-12-23 08:53:39 +00:00
|
|
|
<th>{{_('Installed Version')}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2018-08-13 17:43:50 +00:00
|
|
|
{% for library,version in versions.items() %}
|
2020-04-15 17:57:33 +00:00
|
|
|
{% if version %}
|
2016-12-23 08:53:39 +00:00
|
|
|
<tr>
|
2018-07-18 18:21:44 +00:00
|
|
|
<th>{{library}}</th>
|
2022-04-24 16:40:50 +00:00
|
|
|
<td>{{version}}</td>
|
2016-12-23 08:53:39 +00:00
|
|
|
</tr>
|
2020-04-15 17:57:33 +00:00
|
|
|
{% endif %}
|
2018-07-18 18:21:44 +00:00
|
|
|
{% endfor %}
|
2016-12-23 08:53:39 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-07-05 12:00:40 +00:00
|
|
|
{% endif %}
|
2015-08-02 18:59:11 +00:00
|
|
|
{% endblock %}
|