diff options
Diffstat (limited to 'website/templates/submit-cfw.html')
-rwxr-xr-x | website/templates/submit-cfw.html | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/website/templates/submit-cfw.html b/website/templates/submit-cfw.html index 95b14d1..ef8607f 100755 --- a/website/templates/submit-cfw.html +++ b/website/templates/submit-cfw.html @@ -27,33 +27,26 @@ <div id="wrapper"> {% block nav %} + <div id="navbar-main"> - <!-- Fixed navbar --> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li><a href="{% url 'website:home' %}" class="active">Home</a></li> {% if user and not user.is_anonymous %} - {% if proposals_w %} - <li><a href="{% url 'website:view_abstracts' %}" >View Proposals</a></li> - {% endif %} - <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.get_full_name|default:user.username }}</a> - <ul class="dropdown-menu"> - <li><a href="{% url 'auth:logout'%}?next=/2016/cfp">Logout</a></li> - <li><a href="{% url 'website:cfp' %}">Main Menu</a></li> - </ul> + <li><a href="{% url 'website:cfp' %}">{{ user.get_full_name|default:user.username }}</a> + <li><a href="{% url 'auth:logout' %}?next=/2016/cfp">Logout</a></li> {% else %} <li><a href="{% url 'website:cfp' %}" >Login</a></li> {% endif %} </ul> </div> - <!--/.nav-collapse --> </div> </div> {% endblock %} + {% block content %} <div id="wrapper"> <div id="main"> |