{% extends '../layout/2column.html' %} {% block html_title %}{{ t('API Setting') }} ยท {{ path }}{% endblock %} {% block content_head %}
{% endblock %} {% block content_main %}
{% set message = req.flash('successMessage') %} {% if message.length %}
{{ message }}
{% endif %} {% if req.form.errors.length > 0 %}
    {% for error in req.form.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ t('API Token Setting') }}
{% if user.apiToken %} {% else %}

{{ t('API Token is not set.') }} {{ t('Please issue with update button') }}

{% endif %}

{{ t('Updating the API Token automatically creates a new Token') }}
{{ t('Processing using the current Token will not work') }}

{% endblock content_main %} {% block content_footer %} {% endblock %} {% block footer %} {% endblock %}