From 173f8d664a4dc583afb682a7d88c6c08beeb6180 Mon Sep 17 00:00:00 2001 From: kaiyou <pierre@jaury.eu> Date: Tue, 17 Mar 2020 16:25:48 +0100 Subject: [PATCH] Display username for unclaimed profiles --- hiboo/profile/templates/profile_list.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hiboo/profile/templates/profile_list.html b/hiboo/profile/templates/profile_list.html index 50f4495..9486d85 100644 --- a/hiboo/profile/templates/profile_list.html +++ b/hiboo/profile/templates/profile_list.html @@ -30,7 +30,8 @@ <td><a href="{{ url_for("profile.details", profile_uuid=profile.uuid) }}">{{ profile.username }}</a></td> <td><a href="{{ url_for("user.details", user_uuid=profile.user_uuid) }}">{{ profile.user.username }}</a></td> {% else %} - <td>-</td><td>-</td> + <td>{{ profile.username }}</td> + <td>-</td> {% endif %} <td>{{ profile.status }}</td> <td>{{ profile.created_at.date() }}</td> -- GitLab