summaryrefslogtreecommitdiff
path: root/website/templates/submit-cfp.html
diff options
context:
space:
mode:
authorkomalsheth2862016-09-14 11:51:21 +0530
committerkomalsheth2862016-09-14 11:51:21 +0530
commitd0c036ec7b64b2f36e4dd9740418936069ed1028 (patch)
treee1888236939e739a2dfb9cfcb16f5f0f8e8b8b9c /website/templates/submit-cfp.html
parent95bb4b3c871732f354132fc1571a00b0acbf68ac (diff)
downloadSciPy2016-d0c036ec7b64b2f36e4dd9740418936069ed1028.tar.gz
SciPy2016-d0c036ec7b64b2f36e4dd9740418936069ed1028.tar.bz2
SciPy2016-d0c036ec7b64b2f36e4dd9740418936069ed1028.zip
Changes in main page
Diffstat (limited to 'website/templates/submit-cfp.html')
-rwxr-xr-xwebsite/templates/submit-cfp.html29
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 %}