diff options
Diffstat (limited to 'web/templates')
-rw-r--r-- | web/templates/base.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/templates/base.html b/web/templates/base.html index ace1eca..4814694 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -3,6 +3,7 @@ <head> <meta charset="UTF-8"> <title>Korabo</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> {% load static %} {% load bootstrap5 %} {% bootstrap_css %} @@ -20,7 +21,8 @@ <div style="float:right;"> <a href="{% url 'index' %}">home</a> | <a href="{% url 'change_password' %}">change password</a> | - <a href="{% url 'logout' %}">logout</a> + <a href="{% url 'logout' %}">logout</a> | + {% if request.user.is_authenticated %}Hello {{ request.user.username }} {% endif %} </div> |