1. User account page error fix

This commit is contained in:
2024-08-04 22:16:47 +01:00
parent 243ab4b9a7
commit cb5169f763
6 changed files with 34 additions and 61 deletions

View File

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