diff --git a/RIGS/templates/RIGS/index.html b/RIGS/templates/RIGS/index.html index 6266854e..9d82fa70 100644 --- a/RIGS/templates/RIGS/index.html +++ b/RIGS/templates/RIGS/index.html @@ -7,9 +7,9 @@
- {% if request.user %} -

Welcome back {{ request.user.get_full_name }}.
- Your rigboard initials are {{ request.user.initials }}

+ {% if user.is_authenticated %} +

Welcome back {{ user.get_full_name }}.
+ Your rigboard initials are {{ user.initials }}

{% endif %}

There are currently {{ rig_count }} rigs coming up.

View Rigboard diff --git a/templates/base.html b/templates/base.html index cca1fc2a..ddc0d5ca 100644 --- a/templates/base.html +++ b/templates/base.html @@ -81,7 +81,7 @@ {% else %} - + Hi guest