summaryrefslogtreecommitdiff
path: root/template/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/base.html')
-rw-r--r--template/base.html29
1 files changed, 24 insertions, 5 deletions
diff --git a/template/base.html b/template/base.html
index d5848db..fdaa230 100644
--- a/template/base.html
+++ b/template/base.html
@@ -19,6 +19,7 @@
}
</style>
<link href="{{ STATIC_URL }}css/bootstrap-responsive.css" rel="stylesheet">
+ <link href="{{ STATIC_URL }}css/style.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
@@ -43,6 +44,9 @@
<li><a href="#faq">FAQs</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
+ {% if user.is_authenticated %}
+ <p class="navbar-text pull-right">Application for registration number {{ user }}</a></p>
+ {% endif %}
{% block navbar %}{% endblock %}
</div><!--/.nav-collapse -->
</div>
@@ -50,8 +54,8 @@
</div>
-<div class="container">
- <div class="span9 well">
+<div class="container-fluid">
+ <div class="span8 well">
<div id="content">
{% block content %}{% endblock %}
{% block main_content %}{% endblock %}
@@ -59,12 +63,27 @@
</div>
<div class="span3">
<div id="sidebar">
+ <div class="well sidebar-nav">
+ <ul class="nav nav-list">
+ <li class="nav-header">Notices</li>
+ <li><hr></li>
+ <li><span class="label label-important pull-right">Important</span></li>
+ <li>Supported Browsers : <br />Google chrome >12 and FF >5</li>
+ <li><hr></li>
+ <li><span class="label label-info pull-right">Info</span></li>
+ <li>JAM 2012 allotment online form filling starts from : 10-4-2012.</li>
+ <li><hr></li>
+ <li><span class="label label-info pull-right">Info</span></li>
+ <li>Last date of receipt of completed application form : 30-4-2012.</li>
+ <li><hr></li>
+ </ul>
+ </div><!--/.well -->
{% block sidebar %}{% endblock %}
</div>
</div>
-
-
-
+ <footer>
+ <p>Copyright &copy; 2012 <a href="http://fossee.in">FOSSEE</a> for IIT Bombay</p>
+ </footer>
</div> <!-- /container -->
</body>