diff options
author | komalsheth286 | 2016-09-14 11:51:21 +0530 |
---|---|---|
committer | komalsheth286 | 2016-09-14 11:51:21 +0530 |
commit | d0c036ec7b64b2f36e4dd9740418936069ed1028 (patch) | |
tree | e1888236939e739a2dfb9cfcb16f5f0f8e8b8b9c /website/templates/submit-cfp.html | |
parent | 95bb4b3c871732f354132fc1571a00b0acbf68ac (diff) | |
download | SciPy2016-d0c036ec7b64b2f36e4dd9740418936069ed1028.tar.gz SciPy2016-d0c036ec7b64b2f36e4dd9740418936069ed1028.tar.bz2 SciPy2016-d0c036ec7b64b2f36e4dd9740418936069ed1028.zip |
Changes in main page
Diffstat (limited to 'website/templates/submit-cfp.html')
-rwxr-xr-x | website/templates/submit-cfp.html | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/website/templates/submit-cfp.html b/website/templates/submit-cfp.html index 00ab9ae..ac77975 100755 --- a/website/templates/submit-cfp.html +++ b/website/templates/submit-cfp.html @@ -18,29 +18,36 @@ {% block header %} - <header id="header"> + <header id="header1"> <h1>Scipy India 2016</h1> - <h2 style= "color:black;">Submit Abstract</h2> + <h2>Submit Abstract</h2> </header> {% endblock %} <div id="wrapper"> {% block nav %} - <nav id="nav" class="alt"> - <ul> - <li><a href="{% url 'website:home' %}" class="active">Scip India 2016</a></li> - - {% if user and not user.is_anonymous %} + <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 %} <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.get_full_name|default:user.username }}<b class="caret"></b></a> + <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> + </ul> + {% else %} + <li><a href="{% url 'website:cfp' %}" >Login</a></li> {% endif %} - </ul> - </nav> + </ul> + </div> + <!--/.nav-collapse --> + </div> +</div> {% endblock %} |