From 38c024c1efbb44d56177740e8549974f848c3f64 Mon Sep 17 00:00:00 2001
From: Anoop Jacob Thomas
Date: Fri, 12 Nov 2010 19:53:12 +0530
Subject: Added certificates page.
---
project/templates/_menu.html | 5 ++
project/templates/about/certificates.html | 102 ++++++++++++++++++++++++++++++
project/urls.py | 4 ++
3 files changed, 111 insertions(+)
create mode 100644 project/templates/about/certificates.html
diff --git a/project/templates/_menu.html b/project/templates/_menu.html
index 035e0d5..11f23b5 100644
--- a/project/templates/_menu.html
+++ b/project/templates/_menu.html
@@ -58,6 +58,11 @@
Sprints
+
+
+ Certificates
+
+
About
diff --git a/project/templates/about/certificates.html b/project/templates/about/certificates.html
new file mode 100644
index 0000000..cf72581
--- /dev/null
+++ b/project/templates/about/certificates.html
@@ -0,0 +1,102 @@
+{% extends "base.html" %}
+{% block content %}
+Certificates
+
+
+Certificate of Appreciation
+
+Participants
+
+
+-
+A Certificate of Appreciation will be issued for
+participants and presenters who contribute considerably during
+the sprints.
+
+-
+To be considered for the Certificate of Appreciation, the
+sprint lead has to approve the participant, based on the proof
+of contribution in sprints.
+
+
+
+Conference Presenters
+
+
+-
+A separate Certificate of Appreciation will be given to all
+conference presenters (including those giving Lightning
+Talks). Conference presenters will be selected based on the
+abstracts submitted on the website.
+
+
+
+
+T-Shirts
+
+Participants & Speakers
+
+
+-
+T-shirts are given to all participants who contribute significantly
+in the sprints, invited speakers and conference presenters.
+
+-
+The sprint lead has to recommend/approve contributors for a t-shirt.
+
+-
+Only one t-shirt per participant will be given.
+
+
+
+
+Certificate of Participation
+
+Participants
+
+
+-
+Participants simply attending the conference talks, tutorials, and sprints, will not be given
+any certificates. They will, however, be given receipts for the payment made, which can be
+submitted to their respective institutions/organizations.
+
+
+
+
+Other goodies
+
+Participants & Presenters
+
+
+-
+Rewards/swag will be given to participants who perform exceptionally
+well in the sprints.
+
+-
+The sprint lead has to recommend contributors for these rewards.
+
+-
+Some rewards may be sent by post/courier to participants after
+the event.
+
+
+
+
+Note
+
+
+-
+Please do not contact SciPy.in organizers for a Certificate of Participation as mere participation/sitting through the event
+does not entitle a participant/registrant for a certificate of
+participation or appreciation.
+
+-
+Participants will be eligible only for a Receipt for the amount
+paid towards registration and accommodation.
+
+-
+The decision of the sprint leads and the FOSSEE team would be final and binding.
+
+
+
+{% endblock content %}
diff --git a/project/urls.py b/project/urls.py
index 5b8f844..0ef4eef 100644
--- a/project/urls.py
+++ b/project/urls.py
@@ -133,6 +133,10 @@ urlpatterns += patterns('',
url(r'^%s/sprints/$' % (SCOPE_ARG_PATTERN),
direct_to_template, {"template": "about/sprints.html"},
name='scipycon_sprints'),
+ url(r'^%s/certificates/$' % (SCOPE_ARG_PATTERN),
+ direct_to_template, {"template": "about/certificates.html"},
+ name='scipycon_certificates'),
+
)
# Password reset
--
cgit