Skip to content

Commit

Permalink
#382. Show help link for all users. Fix link target url.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaith committed Sep 23, 2015
1 parent bb25e8a commit 14be262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion talks/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
<button type="submit" class="btn btn-default">Submit</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://talksox.readthedocs.org/en/latest" target="_blank"><span class="glyphicon glyphicon-info-sign"></span> Help</a></li>
{% if user.is_authenticated %}
<li><a href="http://talksox.readthedocs.org/en/latest/user/talk-editors.html" target="_blank"><span class="glyphicon glyphicon-info-sign"></span> Help</a></li>
{% if user.first_name and user.last_name %}
<li><p class="navbar-text"><i class="glyphicon glyphicon-user"></i> {{ user.first_name }} {{ user.last_name }}</p></li>
{% elif user.email %}
Expand Down

0 comments on commit 14be262

Please sign in to comment.