diff options
author | Thomas Stephen Lee | 2016-09-14 12:15:32 +0530 |
---|---|---|
committer | Thomas Stephen Lee | 2016-09-14 12:15:32 +0530 |
commit | 6e403b6ab702aec317671d0ef3507d3d6253b4de (patch) | |
tree | 2b00d7574d3a7e4d08b45c0f5f6483d9bd371563 /website/templates/submit-cfw.html | |
parent | abbb48fada2b23bd8fc7f317f15a86b6d8db9eeb (diff) | |
parent | d0c036ec7b64b2f36e4dd9740418936069ed1028 (diff) | |
download | SciPy2016-6e403b6ab702aec317671d0ef3507d3d6253b4de.tar.gz SciPy2016-6e403b6ab702aec317671d0ef3507d3d6253b4de.tar.bz2 SciPy2016-6e403b6ab702aec317671d0ef3507d3d6253b4de.zip |
Merge branch 'master' of https://github.com/FOSSEE/SciPy2016
Conflicts:
scipy2016/urls.pyc
website/forms.pyc
website/urls.pyc
website/views.pyc
Diffstat (limited to 'website/templates/submit-cfw.html')
-rwxr-xr-x | website/templates/submit-cfw.html | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/website/templates/submit-cfw.html b/website/templates/submit-cfw.html index b0413b8..f43b378 100755 --- a/website/templates/submit-cfw.html +++ b/website/templates/submit-cfw.html @@ -18,29 +18,36 @@ {% block header %} - <header id="header"> + <header id="header1"> <h1>Scipy India 2016</h1> - <h2 style= "color:black;">Submit Workshop Proposal</h2> + <h2>Submit Workshop Proposal</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 %} |