{% extends "core/base/base.html" %} {% comment %} SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% block title %} User Profile {% endblock title %} {% block content %}

User Profile

Username {{ user.username }}
Given Name {{ user.first_name }}
Surname {{ user.last_name }}
Display Name {{ user.heliportuser.display_name }}
E-Mail {{ user.email }}
ORCID
{% if heliport_user.orcid %} {{ heliport_user.orcid }} {% endif %} {# djlint: off #} {# djlint: on #}
{% csrf_token %}
{# djlint: off #} {# djlint: on #}

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