{% extends 'core/base.html' %} {% load i18n %} {% load static %} {% block content %}

{% trans "Settings" %}

{% trans "User Information" %}

User-ID {{ user.ldap_user.attrs.uid.0 }}
{% trans "Surename" %} {{ user.ldap_user.attrs.sn.0 }}
{% trans "Givenname" %} {{ user.ldap_user.attrs.givenname.0 }}
E-Mail {{ user.ldap_user.attrs.mail.0 }}
{% trans "Group" %} {{ user.ldap_user.attrs.ou.0 }}
{% trans "Institute" %} {{ user.ldap_user.attrs.o.0 }}
{% trans "ORCID" %}
{% if heliport_user.orcid %} {% endif %}

{% trans "Token Authentication" %}

{% trans "You can see your authentication token by clicking on the toggle button below. The token is used to authenticate the user when querying the REST api of the HELIPORT System. Keep your token secret!" %}

example of how to use token: curl -H "Authorization: Token 0123456789" {{ request.scheme }}://{{ request.get_host }}/api/



{% trans "Remote Server" %}

{% trans "If you have files and wish to use them in HELIPORT. Connect to a machine here:" %}

{% trans "Manage Logins" %}

{% endblock %} {% block script %} {% endblock %}