Skip to content
Snippets Groups Projects
Commit 911e32c4 authored by Branson Craig Stephens's avatar Branson Craig Stephens
Browse files

Fixed bug that prevented LV-EM users from seeing the 'Options' nav menu item.

parent 2159eba5
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment