{% extends 'base.html' %} {% block body %}
{{ App.Csrf.getHiddenInput|raw }}

{{ 'Language'|trans }}


{{ 'Display'|trans }}


{{ 'Keyboard Shortcuts'|trans }}

{{ 'Only lowercase letters are allowed.'|trans }}

{{ 'Action'|trans }} {{ 'Shortcut'|trans }}
{{ 'Create'|trans }}
{{ 'Edit'|trans }}
{{ 'Submit'|trans }}
{{ 'TODO list'|trans }}

{{ 'PDF configuration'|trans }}





{{ 'Miscellaneous'|trans }}






{{ App.Csrf.getHiddenInput|raw }}

{{ 'Modify your personal informations'|trans }}

{{ 'Modify your password'|trans }}



{{ 'Modify your identity'|trans }}



{{ 'Modify your contact information'|trans }}

{{ 'Experiment Templates'|trans }}


{{ 'Import from File'|trans }}

{{ App.Csrf.getHiddenInput|raw }}

{% for template in templatesArr %}
{% if template.tags|length > 0 %} {% set tagsIdArr = template.tags_id|split(',') %} {% set tagsValueArr = template.tags|split('|') %} {% for key, tag in tagsValueArr %} {# the key allows to get the id stored in tagsIdArr #} {{ tag|raw }} {% endfor %} {% endif %}
{{ App.Csrf.getHiddenInput|raw }} {# the id begins with an 'e' because of this https://github.com/tinymce/tinymce/issues/3011#issuecomment-227993762 #}
{% include('steps-links-edit.html') %}
{% endfor %}

{{ 'API keys'|trans }}

{{ 'Existing keys'|trans }}
{% for key in apiKeysArr %} {% endfor %}
# {{ 'Name'|trans }} {{ 'Permissions'|trans }} {{ 'Creation date'|trans }} {{ 'Action'|trans }}
{{ loop.index }} {{ key.name }} {{ key.can_write ? 'Read/Write'|trans : 'Read Only'|trans }} {{ key.created_at }}
{{ 'Create new key'|trans }}
{{ App.Csrf.getHiddenInput|raw }}
{% endblock body %}