2020-01-11 18:10:39 +00:00
|
|
|
{% extends "fragment.html" %}
|
2019-12-20 06:08:15 +00:00
|
|
|
{% block body %}
|
|
|
|
<div class="well">
|
2022-01-22 17:23:08 +00:00
|
|
|
<p>
|
|
|
|
{% if not warning %}
|
2022-12-25 09:22:58 +00:00
|
|
|
{{_('Open the .kobo/Kobo/Kobo eReader.conf file in a text editor and add (or edit):')}}
|
2022-01-22 17:23:08 +00:00
|
|
|
</p><p>
|
|
|
|
api_endpoint={{url_for("kobo.TopLevelEndpoint", auth_token=auth_token, _external=True)}}
|
|
|
|
{% else %}
|
|
|
|
{{warning}}
|
|
|
|
</p><p>{{_('Kobo Token:')}} {{ auth_token }}
|
|
|
|
{% endif %}
|
2019-12-20 06:08:15 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-01-11 18:10:39 +00:00
|
|
|
{% endblock %}
|