diff options
Diffstat (limited to 'website/templates/abstract-details.html')
-rwxr-xr-x | website/templates/abstract-details.html | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/website/templates/abstract-details.html b/website/templates/abstract-details.html index 30a6dea..319feb2 100755 --- a/website/templates/abstract-details.html +++ b/website/templates/abstract-details.html @@ -17,7 +17,7 @@ {% block header %} - <header id="header"> + <header id="header1"> <h1>Scipy India 2016</h1> <h2>Abstract Details</h2> </header> @@ -27,21 +27,28 @@ <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="wrapper"> +<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 %} @@ -56,10 +63,12 @@ {% if proposal.prerequisite %} <p><b>Prerequisite: </b> {{ proposal.prerequisite }}</p> {% endif%} + <p><b>Date Created: </b> {{ proposal.date_created }}</p> {% if proposal.attachment.url %} - <a href="{{ proposal.attachment.url }}" class="btn btn-info" target="_blank">Attachment</a> + <p><b>Attachment: </b> + <a href="{{ proposal.attachment.url }}" class="btn btn-info" target="_blank">{{proposal.attachment}}</a></p> {% endif %} - <p><b>Date Created: </b> {{ proposal.date_created }}</p> + <hr> <h4>Comments</h4> <hr> |