diff options
author | Dominic DiTaranto <domdit@gmail.com> | 2024-10-29 12:18:55 -0400 |
---|---|---|
committer | Dominic DiTaranto <domdit@gmail.com> | 2024-10-29 12:18:55 -0400 |
commit | 6a895e489a4a5eb74085b7980f293d7a24c92c92 (patch) | |
tree | 0999db7fccc31e705cb51d4c4c6d4aec1fef27b9 /web/templates/base.html | |
parent | 7bb09a78316bd17ccf82ec96ae05e6729826efea (diff) |
mobile stuff
Diffstat (limited to 'web/templates/base.html')
-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> |