mirror of
https://github.com/janeczku/calibre-web
synced 2024-10-31 15:20:28 +00:00
3b216bfa07
Create kobo sync token button is now "unclicked" after closing dialog Additional localhost route is catched If book format is deleted this also deletes the book synced to kobo status
16 lines
412 B
HTML
16 lines
412 B
HTML
{% extends "fragment.html" %}
|
|
{% block body %}
|
|
<div class="well">
|
|
<p>
|
|
{% if not warning %}
|
|
{{_('Open the .kobo/Kobo eReader.conf file in a text editor and add (or edit):')}}
|
|
</p><p>
|
|
api_endpoint={{url_for("kobo.TopLevelEndpoint", auth_token=auth_token, _external=True)}}
|
|
{% else %}
|
|
{{warning}}
|
|
</p><p>{{_('Kobo Token:')}} {{ auth_token }}
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|