From f89410559c20dd88d78ccd6b9d24e7941da9d5ff Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Fri, 30 Oct 2009 15:09:12 +0530 Subject: Added all the files from kiwipycon and the changes made for SciPy.in. --- project/templates/404.html | 11 ++ project/templates/500.html | 12 ++ project/templates/_errors.html | 2 + project/templates/_menu.html | 47 +++++++ project/templates/_menu_user.html | 19 +++ project/templates/_sponsors.html | 14 ++ project/templates/about/accommodation.html | 4 + project/templates/about/food.html | 4 + project/templates/about/reaching.html | 4 + project/templates/about/venue.html | 4 + project/templates/admin/base_site.html | 10 ++ project/templates/base.html | 57 +++++++++ project/templates/blog/post_detail.html | 77 +++++++++++ project/templates/blog/post_list.html | 35 +++++ project/templates/comments/form.html | 20 +++ project/templates/flatpages/default.html | 9 ++ project/templates/flatpages/markdown.html | 10 ++ project/templates/flatpages/restructuredtext.html | 10 ++ project/templates/flatpages/textile.html | 10 ++ project/templates/notifications/activate_mail.html | 35 +++++ project/templates/registration/download-csv.html | 41 ++++++ .../templates/registration/edit-registration.html | 24 ++++ project/templates/registration/invoice.html | 141 +++++++++++++++++++++ project/templates/registration/registrations.html | 37 ++++++ .../registration/submit-registration.html | 106 ++++++++++++++++ project/templates/sponsor/schwag.html | 26 ++++ project/templates/talk/edit-talk.html | 23 ++++ project/templates/talk/schedule.html | 22 ++++ project/templates/talk/submit-talk.html | 63 +++++++++ project/templates/talk/talk_detail.html | 43 +++++++ project/templates/talk/talk_list.html | 22 ++++ project/templates/talk/talks-cfp.html | 33 +++++ project/templates/user/_usermenu.html | 16 +++ project/templates/user/account.html | 119 +++++++++++++++++ project/templates/user/editprofile.html | 28 ++++ project/templates/user/login.html | 73 +++++++++++ project/templates/user/password.html | 56 ++++++++ project/templates/user/username.html | 32 +++++ 38 files changed, 1299 insertions(+) create mode 100644 project/templates/404.html create mode 100644 project/templates/500.html create mode 100644 project/templates/_errors.html create mode 100644 project/templates/_menu.html create mode 100644 project/templates/_menu_user.html create mode 100644 project/templates/_sponsors.html create mode 100644 project/templates/about/accommodation.html create mode 100644 project/templates/about/food.html create mode 100644 project/templates/about/reaching.html create mode 100644 project/templates/about/venue.html create mode 100644 project/templates/admin/base_site.html create mode 100644 project/templates/base.html create mode 100644 project/templates/blog/post_detail.html create mode 100644 project/templates/blog/post_list.html create mode 100644 project/templates/comments/form.html create mode 100644 project/templates/flatpages/default.html create mode 100644 project/templates/flatpages/markdown.html create mode 100644 project/templates/flatpages/restructuredtext.html create mode 100644 project/templates/flatpages/textile.html create mode 100644 project/templates/notifications/activate_mail.html create mode 100644 project/templates/registration/download-csv.html create mode 100644 project/templates/registration/edit-registration.html create mode 100644 project/templates/registration/invoice.html create mode 100644 project/templates/registration/registrations.html create mode 100644 project/templates/registration/submit-registration.html create mode 100644 project/templates/sponsor/schwag.html create mode 100644 project/templates/talk/edit-talk.html create mode 100644 project/templates/talk/schedule.html create mode 100644 project/templates/talk/submit-talk.html create mode 100644 project/templates/talk/talk_detail.html create mode 100644 project/templates/talk/talk_list.html create mode 100644 project/templates/talk/talks-cfp.html create mode 100644 project/templates/user/_usermenu.html create mode 100644 project/templates/user/account.html create mode 100644 project/templates/user/editprofile.html create mode 100644 project/templates/user/login.html create mode 100644 project/templates/user/password.html create mode 100644 project/templates/user/username.html (limited to 'project/templates') diff --git a/project/templates/404.html b/project/templates/404.html new file mode 100644 index 0000000..1a450f4 --- /dev/null +++ b/project/templates/404.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% block title %}404 Page Not Found{% endblock %} + +{% block content %} + +

404 Page Not Found

+ +

Are you sure you have the correct URL?

+ +{% endblock content %} diff --git a/project/templates/500.html b/project/templates/500.html new file mode 100644 index 0000000..dfb1ae4 --- /dev/null +++ b/project/templates/500.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block title %}500 Server Error{% endblock %} + +{% block content %} + +

500 Server Error

+ +

Oops. Something went wrong. Djangonauts behind this site received an information about this +accident and will start investigation shortly. We apologize for any inconvenience!

+ +{% endblock content %} diff --git a/project/templates/_errors.html b/project/templates/_errors.html new file mode 100644 index 0000000..f0e21d1 --- /dev/null +++ b/project/templates/_errors.html @@ -0,0 +1,2 @@ +{% if messages %}
{% for message in messages %}{{ message }}{% endfor %}
{% endif %} +{% if form.errors %}
Please correct the errors below
{% endif %} diff --git a/project/templates/_menu.html b/project/templates/_menu.html new file mode 100644 index 0000000..0cfabee --- /dev/null +++ b/project/templates/_menu.html @@ -0,0 +1,47 @@ +
+ +
diff --git a/project/templates/_menu_user.html b/project/templates/_menu_user.html new file mode 100644 index 0000000..444c62d --- /dev/null +++ b/project/templates/_menu_user.html @@ -0,0 +1,19 @@ + diff --git a/project/templates/_sponsors.html b/project/templates/_sponsors.html new file mode 100644 index 0000000..ea52dea --- /dev/null +++ b/project/templates/_sponsors.html @@ -0,0 +1,14 @@ +
+

Organizers

+

+ +
diff --git a/project/templates/about/accommodation.html b/project/templates/about/accommodation.html new file mode 100644 index 0000000..f0205f2 --- /dev/null +++ b/project/templates/about/accommodation.html @@ -0,0 +1,4 @@ +{% extends "base.html" %} +{% block content %} +

We will update this page once we have more information on it.

+{% endblock content %} \ No newline at end of file diff --git a/project/templates/about/food.html b/project/templates/about/food.html new file mode 100644 index 0000000..f0205f2 --- /dev/null +++ b/project/templates/about/food.html @@ -0,0 +1,4 @@ +{% extends "base.html" %} +{% block content %} +

We will update this page once we have more information on it.

+{% endblock content %} \ No newline at end of file diff --git a/project/templates/about/reaching.html b/project/templates/about/reaching.html new file mode 100644 index 0000000..f0205f2 --- /dev/null +++ b/project/templates/about/reaching.html @@ -0,0 +1,4 @@ +{% extends "base.html" %} +{% block content %} +

We will update this page once we have more information on it.

+{% endblock content %} \ No newline at end of file diff --git a/project/templates/about/venue.html b/project/templates/about/venue.html new file mode 100644 index 0000000..f0205f2 --- /dev/null +++ b/project/templates/about/venue.html @@ -0,0 +1,4 @@ +{% extends "base.html" %} +{% block content %} +

We will update this page once we have more information on it.

+{% endblock content %} \ No newline at end of file diff --git a/project/templates/admin/base_site.html b/project/templates/admin/base_site.html new file mode 100644 index 0000000..c94049e --- /dev/null +++ b/project/templates/admin/base_site.html @@ -0,0 +1,10 @@ +{% extends "admin/base.html" %} +{% load i18n %} + +{% block title %}{{ title }} | {% trans 'SciPy.in 2009 Administration' %}{% endblock %} + +{% block branding %} +

{% trans 'SciPy.in 2009 Administration' %}

+{% endblock %} + +{% block nav-global %}{% endblock %} diff --git a/project/templates/base.html b/project/templates/base.html new file mode 100644 index 0000000..453a4d7 --- /dev/null +++ b/project/templates/base.html @@ -0,0 +1,57 @@ + + + + + {% block title %}{% endblock %} SciPy.in 2009, December 12 - 17, 2009, Trivandrum, Kerala, India + + + + + + + + + + + + + + + + + + + + +
+
+ {% include '_menu.html' %} +
+
+ {% if user.is_authenticated %} + {% include 'user/_usermenu.html' %} + {% endif %} + + {% block content %}{% endblock %} +
+ +
+ + + + + diff --git a/project/templates/blog/post_detail.html b/project/templates/blog/post_detail.html new file mode 100644 index 0000000..7bd3588 --- /dev/null +++ b/project/templates/blog/post_detail.html @@ -0,0 +1,77 @@ +{% extends "blog/base_blog.html" %} + + +{% block title %}{{ object.title }}{% endblock %} +{% block body_class %}{{ block.super }} post_detail{% endblock %} +{% block body_id %}post_{{ object.id }}{% endblock %} + + +{% block content_title %} +

{{ object.title }}

+ +{% endblock %} + + +{% block content %} + {% load blog markup comments tagging_tags %} + +

{{ object.title }}

+

{{ object.publish|date:"j F Y" }}

+ +
+ {{ object.body|markdown:"safe" }} +
+ + {% tags_for_object object as tag_list %} + {% if tag_list %} +

Related tags: + {% for tag in tag_list %} + {{ tag }}{% if not forloop.last %}, {% endif %} + {% endfor %} +

+ {% endif %} + + {% get_comment_list for object as comment_list %} + {% if comment_list %} +
+ +

Comments

+ {% for comment in comment_list %} + {% if comment.is_public %} +
+
+ {{ forloop.counter }} + {% if comment.user_url %}{{ comment.user_name }}{% else %}{{ comment.user_name }}{% endif %} says... +
+ {{ comment.comment|urlizetrunc:"60"|markdown:"safe" }} +

Posted at {{ comment.submit_date|date:"P" }} on {{ comment.submit_date|date:"F j, Y" }}

+
+ {% endif %} + {% endfor %} +
+ {% endif %} + {% if user.is_authenticated %} + {% if object.allow_comments %} +
+ {% render_comment_form for object %} +
+ {% else %} +
+

Comments are closed.

+

Comments have been close for this post.

+
+ {% endif %} + {% else %} +
+

Comments are closed.

+

Please login in to comment.

+
+ {% endif %} +{% endblock %} diff --git a/project/templates/blog/post_list.html b/project/templates/blog/post_list.html new file mode 100644 index 0000000..b536f47 --- /dev/null +++ b/project/templates/blog/post_list.html @@ -0,0 +1,35 @@ +{% extends "blog/base_blog.html" %} + + +{% block title %}{% endblock %} +{% block body_class %}{{ block.super }} post_list{% endblock %} + + +{% block content_title %} +

Post archive

+{% endblock %} + + +{% block content %} +
+ {% for post in object_list %} +
+

{{ post.title }}

+

{{ post.publish|date:"Y F d" }}

+

{{ post.tease }}

+
+ {% endfor %} +
+ + {% if is_paginated %} +

+ {% if has_next %} + Older + {% endif %} + {% if has_next and has_previous %} | {% endif %} + {% if has_previous %} + Newer + {% endif %} +

+ {% endif %} +{% endblock %} diff --git a/project/templates/comments/form.html b/project/templates/comments/form.html new file mode 100644 index 0000000..c889a87 --- /dev/null +++ b/project/templates/comments/form.html @@ -0,0 +1,20 @@ +{% load comments %} +

Comments

+
+ {% for field in form %} + {% if field.is_hidden %} + {{ field }} + {% else %} + + {% endif %} + {% endfor %} +

+ + +

+
diff --git a/project/templates/flatpages/default.html b/project/templates/flatpages/default.html new file mode 100644 index 0000000..0d570cf --- /dev/null +++ b/project/templates/flatpages/default.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block title %} +{{ flatpage.title }} +{% endblock %} + +{% block content %} +{{ flatpage.content }} +{% endblock %} diff --git a/project/templates/flatpages/markdown.html b/project/templates/flatpages/markdown.html new file mode 100644 index 0000000..2239e12 --- /dev/null +++ b/project/templates/flatpages/markdown.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% load markup %} +{% block title %} +{{ flatpage.title }} +{% endblock %} + +{% block content %} +{{ flatpage.content|markdown }} +{% endblock %} diff --git a/project/templates/flatpages/restructuredtext.html b/project/templates/flatpages/restructuredtext.html new file mode 100644 index 0000000..386cceb --- /dev/null +++ b/project/templates/flatpages/restructuredtext.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% load markup %} +{% block title %} +{{ flatpage.title }} +{% endblock %} + +{% block content %} +{{ flatpage.content|restructuredtext }} +{% endblock %} diff --git a/project/templates/flatpages/textile.html b/project/templates/flatpages/textile.html new file mode 100644 index 0000000..01bafcc --- /dev/null +++ b/project/templates/flatpages/textile.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% load markup %} +{% block title %} +{{ flatpage.title }} +{% endblock %} + +{% block content %} +{{ flatpage.content|textile }} +{% endblock %} diff --git a/project/templates/notifications/activate_mail.html b/project/templates/notifications/activate_mail.html new file mode 100644 index 0000000..7897fc4 --- /dev/null +++ b/project/templates/notifications/activate_mail.html @@ -0,0 +1,35 @@ +Hello everyone, + We have not activated your account till now since were still in the +process of finalizing the ideas for SciPy.in 2009 and the smoothing out +the organization details. This mail is an activation mail. Click on the +link below to activate your account. + +http://scipy.in/accounts/activate/{{ activation_key }}/ + + If your email client doesn't support clicking the links, please copy +paste the above URL in your browser's address bar. If your email client +wraps the line and the activation URL is broken, then your activation +can be constructed as follows: + +http://scipy.in/accounts/activate// + +Your activation key being: +{{ activation_key }} + +NOTE: Please activate your account within next 7 days i.e, before +October 26th, 2009. Otherwise your account will be removed from +our database. + +Very important: The registration process is not complete yet. Once you +activate your account you will be able to login on the site. Please login +and click on the registration link at the left panel again. You will be +presented with other details. Please fill in the relevant details. This +information is very much required for us to conduct SciPy very smoothly. + +Optionally you can also click on Edit Profile link at the top and fill in +your bio. + + +-- + Thanks for understanding, + FOSSEE Team diff --git a/project/templates/registration/download-csv.html b/project/templates/registration/download-csv.html new file mode 100644 index 0000000..e23ae50 --- /dev/null +++ b/project/templates/registration/download-csv.html @@ -0,0 +1,41 @@ +{% extends "admin/base_site.html" %} + +{% block title %}Download Registrations{% endblock %} + +{% block content %} +

Edit Registration

+ +{% include '_errors.html' %} + +
+
+ Select Registrations + + {{ form }} +
+ +
+
+ +{% if no_results %} +

{{ no_results }}

+{% endif %} +{% if results %} + +{% for reg in results %} + + + + + + + +{% endfor %} +
{{reg.registrant.get_full_name }}{{reg.registrant.email }}{{reg.amount }}{{reg.payment }}{{reg.party }}
+{% endif %} +{% endblock content %} + diff --git a/project/templates/registration/edit-registration.html b/project/templates/registration/edit-registration.html new file mode 100644 index 0000000..6bafa96 --- /dev/null +++ b/project/templates/registration/edit-registration.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} + +{% block title %}Edit Registration{% endblock %} + +{% block content %} +

Edit Registration

+ +{% include '_errors.html' %} + +
+
+ Edit Registration + + {{ form }} +
+ +
+
+{% endblock content %} + diff --git a/project/templates/registration/invoice.html b/project/templates/registration/invoice.html new file mode 100644 index 0000000..7966763 --- /dev/null +++ b/project/templates/registration/invoice.html @@ -0,0 +1,141 @@ + + + + + + + + + + + +
+ + SciPy.in Logo +

+
+ 41 Hihitahi Rise
+ Te Haumi, Paihia 0200
+ Incorporated Society #2250349
+
+ + + + + + + + + + + + + + + + + + + + {% if registration.sponsor %} + + + + {% endif %} + {% if registration.discount %} + + + + {% endif %} + {% ifequal registration.amount 10 %} + + + + {% endifequal %} + + + + + +
+

New Zealand Python Users Group Incorporated

+
+
+ + + + + +
Invoice Number: {{ registration.slug }} + Date: {{ registration.submitted|date:"d F, Y"}}
+
+
+
+
+ To:
+ {{ user.get_profile.fullname }}
+ {{ user.email }}
+ < {{ user.username }} >
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
ItemPriceQtyAmount (NZ$)

NZPycon 2009 Attendence fee{{ registration.amount }}.001{{ registration.amount }}.00

Total${{ registration.amount }}.00
+
+
+
+
+ As a guest of {{ registration.sponsor|title }} please ignore this invoice. +
+ Your fee has been discounted because you are a student or otherwise on a + low income. You will be required to present your Student ID or a Community + Services Card on arrival. +
+ Your fee has been discounted because you are a presenter at NZPycon 2009. +
Thanks for your registration! +
+
+ {% if registration.payment %} + {% if registration.sponsor %} + Thank you, no payment required + {% else %} + Thank you, this invoice has been paid + {% endif %} + {% else %} + Please pay to:
+New Zealand Python User Group
+06-0158-0360348-00
+The National Bank
+Auckland University Branch
+PO Box 2132
+ {% endif %} +
+ + + diff --git a/project/templates/registration/registrations.html b/project/templates/registration/registrations.html new file mode 100644 index 0000000..678828b --- /dev/null +++ b/project/templates/registration/registrations.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} + +{% block title %} +Registrations +{% endblock %} + +{% block content %} + +

Submit Registration

+ + {% if over_reg %} +
+ We have already reached the total number of registrations for the + conference. If you would like to be put on a waiting list in the event + that someone can't make it to the conference, please follow the link + below to register and we will be in contact if a registration spot comes + available. +
+ {% endif %} + +

Currently {{ registrations }} persons have registered to attend Kiwi PyCon 2009.

+ +

To attend Kiwi Pycon 2009 please register

+ +

Registration payments: + +

+New Zealand Python User Group,
+06-0158-0360348-00
+The National Bank,
+Auckland University Branch
+PO Box 2132
+
+ +Please use your username and invoice number as references when making payments. + +{% endblock %} diff --git a/project/templates/registration/submit-registration.html b/project/templates/registration/submit-registration.html new file mode 100644 index 0000000..6a29db8 --- /dev/null +++ b/project/templates/registration/submit-registration.html @@ -0,0 +1,106 @@ +{% extends "base.html" %} + +{% block title %}Submit Registration{% endblock %} + +{% block content %} + +

Submit Registration

+ + {% if over_reg %} +
+ We have already reached the total number of registrations for the + conference. If you would like to be put on a waiting list in the event that + someone can't make it to the conference, please register below and we + will be in contact if a registration spot comes available. N.B. Do not + pay the admission fee. +
+ {% endif %} +
+ {% if not user.is_authenticated %} +
+ Have you already registered for the conference? + + {{ login_form }} +
+ + + + +
+ +
+ {% endif %} + +

+ + {% if not user.is_authenticated %} +
+
+
+ Registrant Details + + {{ registrant_form }} +
+ + +
+ {% endif %} +
+ +{% if registration_form.errors %}
Please correct the errors below
{% endif %} + +
+ Details + + {% for field in registration_form.personal_fields %} + + + {% endfor %} + + {% for field in registration_form.other_fields %} + + + {% endfor %} + +
{{ field.label_tag }}{{ field.errors }}{{ field }}
{{ field.help_text }}
{{ field.label_tag }}{{ field.errors }}{{ field }}
{{ field.help_text }}
+
+ +
+ +
+ Demographics + + {% for field in registration_form.demographic_fields %} + + + {% endfor %} +
{{ field.label_tag }}{{ field.errors }}{{ field }}
{{ field.help_text }}
+
+
+ Others + + {{ wifi_form }} +
+ + +
+
+ {% if message %} + + {% endif %} +{% endblock content %} diff --git a/project/templates/sponsor/schwag.html b/project/templates/sponsor/schwag.html new file mode 100644 index 0000000..f01f1bf --- /dev/null +++ b/project/templates/sponsor/schwag.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} + +{% block title %} +Schwag Sponsors +{% endblock %} + +{% block content %} +

Schwag Sponsors

+ +

The SciPy.in 2009 Organising Committee would also like to thank the +following organisations for their generous contributions of giveaway items for +the SciPy.in PyCon attendees!

+ +

+ + +{% endblock %} + 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 %} +

Edit Talk

+ +{% include '_errors.html' %} +
+
+ Edit Talk + + {{ 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 %} +
+
+

Dates

+
+
+

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.

+ + + + + + + + +
DateActivity
Saturday, Dec. 12 2009Conference
Sunday, Dec. 13 2009Conference
Monday, Dec. 14 2009Tutorials
Tuesday, Dec. 15 2009Tutorials
Wednesday, Dec. 16 2009Sprint
Thursday, Dec. 17 2009Sprint
+
+

Details of the programme will be updated soon.

+
+{% 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 %} +

Submit Talk Proposal

+ +{% include '_errors.html' %} + +
+ {% if not user.is_authenticated %} +
+ Are you a member of this site? + + {{ login_form }} +
+ + + + +
+ +
+
+
+
+ Speaker Registration + + {{ register_form }} +
+ + +
+ {% endif %} +
+
+ Talk Submission + + {{ talk_form }} +
+ + +
+
+ {% if message %} + + {% 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 %} +

{{ object.title }}

+

View all talks

+ + + +
+
Title
+
{{ object.title }}
+
Speaker
+
{{ object.speaker.get_profile.fullname }}
+
Speaker's profile
+
{{ object.speaker.get_profile.about }}
+
Topic
+
{{ object.topic }}
+
Abstract
+
{{ object.abstract }}
+
Outline
+
{{ object.outline }}
+
Audience
+ {% load talk_extras %} + {% with choices|choice:object.audience as audience %} +
{{ audience|title }}
+ {% endwith %} +
Tags
+
{{ object.tags }}
+
+ + +{% 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 %} +

Talks

+

Accepted talks list is not out yet. This page will be updated soon.

+

Showing {{ count }} of {{ count }}

+ + +{% 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 %} +
+

Call for Papers

+

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.

+
+

Submission of Papers

+

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.

+

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.

+

If you wish to present a talk at the conference, please follow +the guidelines below.

+
+
+

Submission Guidelines

+
    +
  • Submissions should be uploaded via the web form.
  • +
  • Submissions whose main purpose is to promote a commercial product or +service will be refused.
  • +
  • All accepted proposals must be presented at the SciPy conference by +at least one author.
  • +
+
+
+{% endblock content %} \ No newline at end of file diff --git a/project/templates/user/_usermenu.html b/project/templates/user/_usermenu.html new file mode 100644 index 0000000..db03c78 --- /dev/null +++ b/project/templates/user/_usermenu.html @@ -0,0 +1,16 @@ +
+ +
diff --git a/project/templates/user/account.html b/project/templates/user/account.html new file mode 100644 index 0000000..3a5302e --- /dev/null +++ b/project/templates/user/account.html @@ -0,0 +1,119 @@ +{% extends "base.html" %} +
  • kauaerangastore@xtra.co.nz
  • + +{% block title %}My Profile{% endblock %} + +{% block content %} +

    My Profile: {{ user.first_name }} {{user.last_name}}

    + + + + + + + + + + + + + + + + + + + + + + + +
    + Username: + + {{ user.username }} +
    + Name: + + {% if user.first_name %} + {{ user.get_full_name }} + {% else %} + No name, please edit profile. + {% endif %} + +
    + +
    +
    + Email: + + {{ user.email }} +
    + Url: + + {{ profile.url }} +
    + About: + + {{ profile.about }} +
    +{% if comment %} +{{ comment }} +{% endif %} +{% if form %} + +

    Wifi

    +

    The following form will help the SciPy.in team identify wireless +requirements.

    +
    + + {{ form }} +
    + +
    +{% endif %} +{% if registration %} +
    +

    Your Registration

    +

    + Edit Registration + {% if registration.sponsor %} + {% else %} + | Your invoice (html) (pdf)

    + {% endif %} +

    +
    +{% endif %} +{% if talks %} +
    +

    Your Submitted Talks

    + + + + + + +{% for talk in talks %} + + + + + + + +{% endfor %} +
    TitleDurationAudienceTags 
    {{ talk.title }}{{ talk.duration }}{{ talk.audience }}{{ talk.tags }} + {% if talk.approved %} + Accepted + {% else %} + Edit + {% endif %} +
    +
    +{% endif %} +{% endblock content %} diff --git a/project/templates/user/editprofile.html b/project/templates/user/editprofile.html new file mode 100644 index 0000000..fd73d3b --- /dev/null +++ b/project/templates/user/editprofile.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block title %}Edit Your Profile{% endblock %} + +{% block content %} +

    Edit Your Profile

    + + +
    +
    + Edit Profile + + {{ form }} +
    + + + + +
    +
    +{% endblock %} + diff --git a/project/templates/user/login.html b/project/templates/user/login.html new file mode 100644 index 0000000..9d920ad --- /dev/null +++ b/project/templates/user/login.html @@ -0,0 +1,73 @@ +{% extends "base.html" %} + +{% block title %}Login or Register{% endblock %} + +{% block content %} +

    Login or Register

    + +
    +

    Login

    + +
    + Log in for registered users of the site. +
    + +
    + + + {{ login_form }} + + + + +
    + Forgot password? +
    + + + + + + + +
    +
    + +
    +

    Register

    + +
    + If you are not already a member of the site you can register here. +
    + +
    + + {{ register_form }} +
    + + + + + +
    +
    +{% endblock content %} + diff --git a/project/templates/user/password.html b/project/templates/user/password.html new file mode 100644 index 0000000..ece1e96 --- /dev/null +++ b/project/templates/user/password.html @@ -0,0 +1,56 @@ +{% extends "base.html" %} + +{% block title %}Change Your Password{% endblock %} + + +{% block content %} + +

    Change Your Password

    + +

    + Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly. +

    + +
    + + + + + + + + + + + + + + + + + +
    + + + {{ form.old_password.errors }} + {{ form.old_password }} +
    + + + {{ form.new_password1.errors }} + {{ form.new_password1 }} +
    + + + {{ form.new_password2.errors }} + {{ form.new_password2 }} +
    + +
    + + +
    + +{% endblock %} + diff --git a/project/templates/user/username.html b/project/templates/user/username.html new file mode 100644 index 0000000..0e101a8 --- /dev/null +++ b/project/templates/user/username.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} + +{% block title %}Change Your Username{% endblock %} + +{% block content %} +

    Change your username

    + +
    + + + + + + + + + +
    + + + {{ form.username.errors }} + {{ form.username }} +
    + +
    + +
    +{% endblock %} + -- cgit