summaryrefslogtreecommitdiff
path: root/project/templates/talk
diff options
context:
space:
mode:
Diffstat (limited to 'project/templates/talk')
-rw-r--r--project/templates/talk/edit-talk.html23
-rw-r--r--project/templates/talk/schedule.html22
-rw-r--r--project/templates/talk/submit-talk.html63
-rw-r--r--project/templates/talk/talk_detail.html43
-rw-r--r--project/templates/talk/talk_list.html22
-rw-r--r--project/templates/talk/talks-cfp.html33
6 files changed, 206 insertions, 0 deletions
diff --git a/project/templates/talk/edit-talk.html b/project/templates/talk/edit-talk.html
new file mode 100644
index 0000000..c6df8c0
--- /dev/null
+++ b/project/templates/talk/edit-talk.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+
+{% block title %}Edit Talk{% endblock %}
+
+{% block content %}
+<h1>Edit Talk</h1>
+
+{% include '_errors.html' %}
+<form action="{% url kiwipycon_edit_talk id %}"
+ method="post">
+ <fieldset>
+ <legend>Edit Talk</legend>
+ <table class="kiwipycon-default">
+ {{ form }}
+ </table>
+ <button class="button left"
+ type="submit">
+ Save Changes
+ </button>
+ </fieldset>
+</form>
+{% endblock content %}
+
diff --git a/project/templates/talk/schedule.html b/project/templates/talk/schedule.html
new file mode 100644
index 0000000..82ee2ec
--- /dev/null
+++ b/project/templates/talk/schedule.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="post">
+ <div class="title">
+ <h2><a name="date">Dates</a></h2>
+ </div>
+ <div class="entry">
+ <p>Its a 6-day programme between December 12 - 17, 2009, comprising of 2 days of conference, 2 days of tutorials with 2 parallel tracks (one specifically for teachers and the other for the general
+public), and 2 days of Sprints.</p>
+ <table cellspacing="5">
+ <tr> <td align=center>Date</td><td>Activity</td> </tr>
+ <tr > <td align=right>Saturday, Dec. 12 2009</td><td>Conference</td> </tr>
+ <tr> <td align=right>Sunday, Dec. 13 2009</td><td>Conference</td> </tr>
+ <tr> <td align=right>Monday, Dec. 14 2009</td><td>Tutorials</td> </tr>
+ <tr> <td align=right>Tuesday, Dec. 15 2009</td><td>Tutorials</td> </tr>
+ <tr> <td align=right>Wednesday, Dec. 16 2009</td><td>Sprint</td> </tr>
+ <tr> <td align=right>Thursday, Dec. 17 2009</td><td>Sprint</td> </tr>
+ </table>
+ </div>
+<h3>Details of the programme will be updated soon.</h3>
+</div>
+{% endblock content %} \ No newline at end of file
diff --git a/project/templates/talk/submit-talk.html b/project/templates/talk/submit-talk.html
new file mode 100644
index 0000000..79d3c80
--- /dev/null
+++ b/project/templates/talk/submit-talk.html
@@ -0,0 +1,63 @@
+{% extends "base.html" %}
+
+{% block title %}Submit Talk Proposal{% endblock %}
+
+{% block content %}
+ <h1>Submit Talk Proposal</h1>
+
+{% include '_errors.html' %}
+
+ <form action="{% url kiwipycon_submit_talk %}"
+ method="post">
+ {% if not user.is_authenticated %}
+ <fieldset>
+ <legend>Are you a member of this site?</legend>
+ <table class="kiwipycon-default required">
+ {{ login_form }}
+ </table>
+
+ <input type="hidden"
+ name="action"
+ value="login" />
+
+ <button class="button left"
+ type="submit">
+ Login
+ </button>
+ </fieldset>
+
+ </form>
+ <br />
+ <form action="{% url kiwipycon_submit_talk %}"
+ enctype="multipart/form-data"
+ method="post">
+ <fieldset>
+ <legend>Speaker Registration</legend>
+ <table class="kiwipycon-default required">
+ {{ register_form }}
+ </table>
+
+ <input type="hidden"
+ name="action"
+ value="register" />
+ </fieldset>
+ {% endif %}
+ <br />
+ <fieldset>
+ <legend>Talk Submission</legend>
+ <table class="kiwipycon-default required">
+ {{ talk_form }}
+ </table>
+
+ <button class="button left"
+ type="submit">
+ Submit Talk
+ </button>
+ </fieldset>
+ </form>
+ {% if message %}
+ <script type="text/javascript">
+ $.jGrowl("{{ message }}");
+</script>
+ {% endif %}
+{% endblock content %}
diff --git a/project/templates/talk/talk_detail.html b/project/templates/talk/talk_detail.html
new file mode 100644
index 0000000..f99a146
--- /dev/null
+++ b/project/templates/talk/talk_detail.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+
+{% block title %}{{ object.title }}{% endblock %}
+
+{% block content %}
+<h1>{{ object.title }}</h1>
+<p><a href="/talks/">View all talks</a></p>
+
+<style>
+dl.default dt {
+ font-weight: bold;
+}
+dl.default dd {
+ margin-bottom: 1em;
+}
+</style>
+
+<dl class="default">
+ <dt>Title</dt>
+ <dd>{{ object.title }}</dd>
+ <dt>Speaker</dt>
+ <dd>{{ object.speaker.get_profile.fullname }}</dd>
+ <dt>Speaker's profile</dt>
+ <dd>{{ object.speaker.get_profile.about }}</dd>
+ <dt>Topic</dt>
+ <dd>{{ object.topic }}</dd>
+ <dt>Abstract</dt>
+ <dd>{{ object.abstract }}</dd>
+ <dt>Outline</dt>
+ <dd>{{ object.outline }}</dd>
+ <dt>Audience</dt>
+ {% load talk_extras %}
+ {% with choices|choice:object.audience as audience %}
+ <dd>{{ audience|title }}</dd>
+ {% endwith %}
+ <dt>Tags</dt>
+ <dd>{{ object.tags }}</dd>
+</dl>
+
+</ul>
+{% endblock content %}
+
+
diff --git a/project/templates/talk/talk_list.html b/project/templates/talk/talk_list.html
new file mode 100644
index 0000000..b3ee5f1
--- /dev/null
+++ b/project/templates/talk/talk_list.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+
+{% block title %}Talk Listing{% endblock %}
+
+{% block content %}
+<h1>Talks</h1>
+<h3>Accepted talks list is not out yet. This page will be updated soon.</h3>
+<p><strong>Showing {{ count }} of {{ count }}</strong></p>
+
+<ul class="plain">
+{% for object in object_list %}
+<li>
+ <ul class="plain" style="margin-bottom:1em;">
+ <li><a href="/talks/talk/{{object.id }}/">{{ object.title }}</a></li>
+ <li><strong>{{ object.speaker.get_profile.fullname }}</strong></li>
+ <li>{{ object.abstract }}</li>
+ </ul>
+</li>
+{% endfor %}
+</ul>
+{% endblock content %}
+
diff --git a/project/templates/talk/talks-cfp.html b/project/templates/talk/talks-cfp.html
new file mode 100644
index 0000000..96ae5b3
--- /dev/null
+++ b/project/templates/talk/talks-cfp.html
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="section" id="call-for-papers">
+<h1>Call for Papers</h1>
+<p>We welcome contributions from the academic world as well as the industry.
+We look forward to your submissions on the use of Python for scientific
+computing and education. This includes pedagogy, exploration, modeling and
+analysis from both applied and developmental perspectives.</p>
+<div class="section" id="submission-of-papers">
+<h2>Submission of Papers</h2>
+<p>If you wish to present, please submit an abstract of between
+300 and 700 words should describe the topic and motivate its
+relevance to scientific computing. Depending on the number
+and quality of submissions, the conference organizers will
+allot between 10-30 minutes for all accepted talks.</p>
+<p>In addition, there will be an open session for lightning talks
+during which any attendee willing to do so is invited to do a
+couple-of-minutes-long presentation.</p>
+<p>If you wish to present a talk at the conference, please follow
+the guidelines below.</p>
+</div>
+<div class="section" id="submission-guidelines">
+<h2>Submission Guidelines</h2>
+<ul class="simple">
+<li>Submissions should be uploaded via <a href="{% url kiwipycon_submit_talk %}">the web form.</a></li>
+<li>Submissions whose main purpose is to promote a commercial product or
+service will be refused.</li>
+<li>All accepted proposals must be presented at the SciPy conference by
+at least one author.</li>
+</ul>
+</div>
+</div>
+{% endblock content %} \ No newline at end of file