template/home.html
author Shantanu <shantanu@fossee.in>
Wed, 21 Oct 2009 16:17:38 +0530
changeset 32 192ca2513f89
parent 14 9548d0ecc8d7
child 33 d9c054b4111f
permissions -rwxr-xr-x
Added changes suggested by Vimal.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
{% extends "index.html" %}
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
{% load i18n %}
32
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     3
{% block sidebar %}  
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     4
 <div id="sidebar">
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     5
		<ul>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     6
		   <li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     7
		   <ul>   
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     8
		     {% if user.is_authenticated %}
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
     9
		     <li>{{ user.username }}</li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    10
		     <li><a href="logout" >{% trans "Logout" %}</a></li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    11
		     {% else %}
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    12
		     <form id="search" method="post" action=".">				
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    13
					{{ form.as_p }}
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    14
		     <input type="submit" value="login" />		     
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    15
		     </form>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    16
		     <li><a href="/accounts/register">Register</a> </li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    17
		     {% endif %}
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    18
		     </ul>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    19
		   <li id="categories">
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    20
				    <h2>Links</h2>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    21
				    <ul>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    22
					    <li><a href="http://scipy.in/#venue">Venue</a> </li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    23
					    <li><a href="http://scipy.in/#theme">Theme</a> </li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    24
					    <li><a href="http://scipy.in/#date">Dates</a> </li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    25
					    <li><a href="http://scipy.in/#organizers">Organizers</a> </li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    26
				    </ul>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    27
		   </li>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    28
		</ul>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    29
	</div>
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    30
	<!-- end sidebar --> 
13
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    31
{% endblock %}
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    32
{% block centercontent %}
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    33
  <div class="post">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    34
		<div class="title">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    35
			<h2><a href="scope">Scope of the conference:</a></h2>				
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    36
		</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    37
    <div class="entry">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    38
			<p><strong>Scipy.in </strong>is a conference providing opportunities to spread the use of
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    39
the Python programming language in the Scientific Computing community in
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    40
India. It provides a unique opportunity to interact with the "Who's who"
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    41
of the Python for Scientific Computing fraternity and learn, understand,
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    42
participate and contribute what is happening in the realms of Scientific
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    43
Computing using Python. Attendees of the conference and participants of
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    44
the sprints planned will be able to access and review the tools
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    45
available, apart from learning domain-specific applications and how the
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    46
tools apply to a plethora of application problems.<br>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    47
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    48
One of the goals of the conference is to combine education, engineering,
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    49
and science with computing through the medium of Python and thereby
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    50
extrapolate on how powerful Scientific Computing is in various fields
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    51
and among different communities.</p>			
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    52
			<!--<p class="links"> <a href="#" class="more">Read More</a> <a href="#" class="comments">No Comments</a> </p> -->
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    53
			</div>						
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    54
	</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    55
	<div class="post">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    56
			<div class="title">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    57
				<h2><a name="theme">Theme</a></h2>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    58
			</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    59
			<div class="entry">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    60
				<p>Theme for Conference talks - <strong>"Scientific Python in Action"</strong> with respect to Application and Teaching</p>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    61
			</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    62
	</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    63
	<div class="post">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    64
			<div class="title">
14
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    65
				<h2><a name="venue">Venue</a></h2>
13
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    66
			</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    67
			<div class="entry">
32
192ca2513f89 Added changes suggested by Vimal.
Shantanu <shantanu@fossee.in>
parents: 14
diff changeset
    68
				<p>This conference is jointly organized by <a href="http://fossee.in">"Free/Open source Software in Science and Engineering Education" (FOSSEE)</a> project under the <a href="http://www.sakshat.ac.in/">National Mission on Education (NME)</a> through Information and Communication Technologies (ICT), <a href="http://space-kerala.org/">SPACE-Kerala </a>, <a href="http://www.itmission.kerala.gov.in/"> Kerala State IT Mission (KSITM)</a> and SIG-FOSS of CSI. SPACE-Kerala is helping coordinate and organize the conference.<br />
13
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    69
The conference is proposed to be held at the Technopark in Trivandrum, keeping in mind accessibility, the number of attendees and the location, among other aspects to be considered.</p>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    70
			</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    71
	</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    72
	<div class="post">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    73
			<div class="title">
14
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    74
				<h2><a name="organizers">Organizers</a></h2>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    75
			</div>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    76
			<div class="entry">
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    77
				<p>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    78
				  <ul>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    79
					    <li>(co-chair) <a href='https://cirl.berkeley.edu/view/User/JarrodMillman'>Jarrod Millman</a>, Neuroscience Institute, UC Berkeley (USA)</li>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    80
					    <li>(co-chair) <a href='http://www.aero.iitb.ac.in/~prabhu'>Prabhu Ramachandran</a>, Department of Aerospace Engineering,
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    81
IIT Bombay (India)</li>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    82
					    <li>Vimal Joseph, <a href='http://space-kerala.org/'>SPACE-Kerala (India)</a></li>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    83
					    <li><a href='http://fossee.in/'>FOSSEE Team</a></li>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    84
				    </ul>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    85
				</p>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    86
			</div>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    87
	</div>
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    88
	<div class="post">
9548d0ecc8d7 Added Organizers and corrected links.
Shantanu <shantanu@fossee.in>
parents: 13
diff changeset
    89
			<div class="title">
13
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    90
				<h2><a name="date">Dates</a></h2>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    91
			</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    92
			<div class="entry">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    93
				<p>Its a 6-day program 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
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    94
public), and 2 days of Sprints.</p>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    95
        <table cellspacing="5">
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    96
        <tr> <td align=center>Date</td><td>Activity</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    97
        <tr > <td align=right>Saturday, Dec. 12 2009</td><td>Conference</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    98
        <tr> <td align=right>Sunday, Dec. 13 2009</td><td>Conference</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    99
        <tr> <td align=right>Monday, Dec. 14 2009</td><td>Tutorials</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   100
        <tr> <td align=right>Tuesday, Dec. 15 2009</td><td>Tutorials</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   101
        <tr> <td align=right>Wednesday, Dec. 16 2009</td><td>Sprint</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   102
        <tr> <td align=right>Thursday, Dec. 17 2009</td><td>Sprint</td> </tr>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   103
        </table>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   104
			</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   105
	</div>
2345fffc92ee Renamed homepage.html to home.html to be consistent with Web conventions.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
   106
{% endblock %}