diff --git a/application/app/templates/registration/login.html b/application/app/templates/registration/login.html
index 765172e..184022f 100644
--- a/application/app/templates/registration/login.html
+++ b/application/app/templates/registration/login.html
@@ -69,7 +69,7 @@
{% for user_ in user_list %}
-
-
+
{% if user_.first_name %}
diff --git a/application/app/templates/userPanel.html b/application/app/templates/userPanel.html
index 32afe40..7e95ff6 100644
--- a/application/app/templates/userPanel.html
+++ b/application/app/templates/userPanel.html
@@ -3,7 +3,7 @@
-

+
{% if user.first_name != "" %}
{% translate "User" %}: {{ user.first_name }} {{ user.last_name }} ({{ user.username }})
diff --git a/application/app/views.py b/application/app/views.py
index d3fafb5..f380851 100644
--- a/application/app/views.py
+++ b/application/app/views.py
@@ -124,7 +124,6 @@ def redirect_home(request):
def profile_pictures(request):
if not "name" in request.GET:
return HttpResponse(b"", status=400)
- print(request.GET["name"])
ppic_filepath = Path(profile_pictures_path / request.GET["name"]).resolve()
try:
ppic_filepath.relative_to(profile_pictures_path)