summaryrefslogtreecommitdiff
path: root/website/templates/submit-cfp.html
diff options
context:
space:
mode:
authorhardythe12015-07-03 15:09:16 +0530
committerhardythe12015-07-03 15:09:16 +0530
commit6239b0eb85b128df8e1e7989c32d53f4f2a1c68b (patch)
tree2fc4a7c782bfabec45fa417a2d2c11610dbac065 /website/templates/submit-cfp.html
parent39df99f2340988e4b541769eccfffffbc430fa7f (diff)
downloadSciPy2015-6239b0eb85b128df8e1e7989c32d53f4f2a1c68b.tar.gz
SciPy2015-6239b0eb85b128df8e1e7989c32d53f4f2a1c68b.tar.bz2
SciPy2015-6239b0eb85b128df8e1e7989c32d53f4f2a1c68b.zip
CFP submission HTML
Diffstat (limited to 'website/templates/submit-cfp.html')
-rw-r--r--website/templates/submit-cfp.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/website/templates/submit-cfp.html b/website/templates/submit-cfp.html
new file mode 100644
index 0000000..d5b19f9
--- /dev/null
+++ b/website/templates/submit-cfp.html
@@ -0,0 +1,55 @@
+{% extends 'base.html' %}
+{% load staticfiles %}
+
+{% block navbar %}
+<div id="navbar-main">
+ <!-- Fixed navbar -->
+ <div class="navbar navbar-inverse navbar-fixed-top">
+ <div class="container">
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
+ <a class="navbar-brand" href="{% url 'website:home' %}">SciPy India 2015 </a>
+ </div>
+ <div class="navbar-collapse collapse">
+ <ul class="nav navbar-nav navbar-right">
+ <li><a href="{% url 'website:home' %}">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>
+ <ul class="dropdown-menu">
+ <li><a href="{% url 'auth:logout' %}?next={{ request.path }}">Logout</a></li>
+ </ul>
+ {% endif %}
+ </ul>
+ </div>
+ <!--/.nav-collapse -->
+ </div>
+ </div>
+</div>
+{% endblock %}
+
+{% block content %}
+<div id="contact" name="contact">
+ <div class="container">
+ <div class="row">
+ <h2 class="centered">Submit a Talk</h2>
+ <hr>
+ </div>
+ <div class="row">
+ <div class="col-lg-8 col-lg-offset-2 centered">
+ <form id="contact" action="" class="form" role="form" method=POST enctype="multipart/form-data">
+ <div class="row">
+ {{ proposal_form.as_p }}
+ {{ proposal_form.erros }}
+ </div>
+ {% csrf_token %}
+ <button class="btn btn btn-lg" type="submit">Submit</button>
+ </form>
+ <!-- form -->
+ </div>
+ </div>
+ <!-- row -->
+ </div>
+</div>
+<!-- container -->
+{% endblock %}