{% 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 %}
| Username | {{ user.username }} |
|---|---|
| Given Name | {{ user.first_name }} |
| Surname | {{ user.last_name }} |
| Display Name | {{ user.heliportuser.display_name }} |
| {{ user.email }} | |
| ORCID |
{% if heliport_user.orcid %}
{{ heliport_user.orcid }}
{% endif %}
{# djlint: off #}
{# djlint: on #}
|