mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-02 09:41:02 +00:00
4708347c16
# Conflicts: # MANIFEST.in # README.md # cps/helper.py # cps/static/js/archive/archive.js # cps/translations/nl/LC_MESSAGES/messages.mo # cps/translations/nl/LC_MESSAGES/messages.po # cps/ub.py # cps/updater.py # cps/web.py # cps/worker.py # optional-requirements.txt
16 lines
613 B
HTML
16 lines
613 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div id="log_group" class="inputs">
|
|
<div><input type="radio" name="log_radio" id="log1" value="0" checked>
|
|
<label for="log0">{{_('Show Calibre-Web log')}}</label> {{logfiles[0]}}</div>
|
|
{% if accesslog_enable %}
|
|
<div><input type="radio" name="log_radio" id="log0" value="1">
|
|
<label for="log1">{{_('Show access log')}}</label> {{logfiles[1]}}</div>
|
|
{% endif %}
|
|
</div>
|
|
<div id="renderer" class="log"></div>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{{ url_for('static', filename='js/logviewer.js') }}"></script>
|
|
{% endblock %}
|