diff options
Diffstat (limited to 'website/templates')
-rw-r--r-- | website/templates/page.html | 6 | ||||
-rw-r--r-- | website/templates/papers.html | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/website/templates/page.html b/website/templates/page.html index d1f21c8..b19c9ea 100644 --- a/website/templates/page.html +++ b/website/templates/page.html @@ -58,13 +58,17 @@ </nav> </div> <!-- /header-inner --> </div> <!-- /header-wrapper --> - <div id="page-jumbo"> <div id="page-jumbo-inner" class="row"> <ul class="breadcrumbs left"> {% block breadcrumbs %} {% endblock %} </ul> + <ul class="breadcrumbs right"> + {% block userblock %} + {% endblock %} + </ul> + </div> <!-- /jumbo-inner --> </div> <!-- /jumbo --> diff --git a/website/templates/papers.html b/website/templates/papers.html index b1932f1..4bce2e5 100644 --- a/website/templates/papers.html +++ b/website/templates/papers.html @@ -1,5 +1,14 @@ {% extends 'page.html'%} + +{% block userblock %} +{% if current_user != "anonymous" %} +<li><a href="#"> {{ current_user }}</a></li> +<li><a href="/2013/accounts/logout">Logout</a></li> +{% endif %} +{% endblock %} {% block content %} + + <div class="row"> {% if status == "up" %} <div data-alert class="alert-box success"> @@ -7,6 +16,7 @@ <a href="#" class="close">×</a> </div> {% endif %} + <h4>Call for Proposals</h4> <p align="justify"> We look forward to submissions for presentations at SciPy India 2013. Please submit an abstract of 400 to 700 words describing the topic, including its relevance to Python. Only submissions with an actual implementation will be considered for presentation (i.e. proposals to implement the code are not acceptable, partial implementations are acceptable so long as they demonstrate the features discussed). Please provide links to your code if this is an open source implementation. |