From 911e32c4261945da80f5b49c8e3f883fbb8a03f3 Mon Sep 17 00:00:00 2001 From: Branson Stephens <branson.stephens@ligo.org> Date: Wed, 27 May 2015 08:12:24 -0500 Subject: [PATCH] Fixed bug that prevented LV-EM users from seeing the 'Options' nav menu item. --- templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/base.html b/templates/base.html index 3e285f838..9ce40ec4f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -41,9 +41,9 @@ function changeTime(obj, label) { <li id="nav-feeds"><a href="{% url "feeds" %}">RSS</a></li> {% endif %} <li id="nav-latest"><a href="{% url "latest" %}">Latest</a></li> - {% if user_is_internal %} + {# if user_is_internal #} <li id="nav-userprofile"><a href="{% url "userprofile-home" %}">Options</a></li> - {% endif %} + {# endif #} {% if user %} {% if user.first_name %} <li id="nav-user">Authenticated as: {{ user.first_name }} {{user.last_name }}</li> -- GitLab