1. User account page name fixed for name not found error

This commit is contained in:
2024-08-04 21:40:04 +01:00
parent 514289bc21
commit 83cdb54a4b

View File

@@ -8,7 +8,7 @@
<!-- HTML content -->
<div>
<h2 style="font-size: 24px; color: white; font-weight: normal;">Welcome, {{ user.firstname }}</h2>
<h2 style="font-size: 24px; color: white; font-weight: normal;">Welcome, {{ 'new user' if user.firstname is None else user.firstname }}</h2>
{% set block_id = 'button_get_in_touch' %}
{% include '_shared.html' %}
</div>