2020-01-11 10:10:39 -08:00
|
|
|
{% extends "fragment.html" %}
|
2019-12-19 22:08:15 -08:00
|
|
|
{% block body %}
|
|
|
|
<div class="well">
|
2022-01-22 09:23:08 -08:00
|
|
|
<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 %}
|
2019-12-19 22:08:15 -08:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-01-11 10:10:39 -08:00
|
|
|
{% endblock %}
|