project/templates/about/venue.html
author Parth buch <parth.buch.115@gmail.com>
Fri, 02 Dec 2011 16:10:48 +0530
branch2011
changeset 469 40025d462588
parent 408 2a34cfa6b417
permissions -rw-r--r--
Added map and map markers to the venue page
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     1
{% extends "base.html" %}
469
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
     2
{% block addscripts %}
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
     3
<link rel="stylesheet" href="/static/css/leaflet.css" />
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
     4
<!--[if lte IE 8]><link rel="stylesheet" href="/static/css/leaflet.ie.css" /><![endif]-->
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
     5
<script type="text/javascript" src="/static/js/leaflet.js"></script>
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
     6
{% endblock%}
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     7
{% block content %}
15
07e4c036a0e7 Added venue information.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 1
diff changeset
     8
<h1>Venue</h1>
07e4c036a0e7 Added venue information.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 1
diff changeset
     9
<div class="entry">
105
9ce5f3e887ce Changed the content to match SciPy.in 2010 initial plans. Commented out most part.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 67
diff changeset
    10
304
52982854f0fe Updated the venues page to include ISB and MSLC.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 210
diff changeset
    11
<h1><strong>Conference Venue</strong></h1>
305
df4715226454 Made few styling adjustments to venues page.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 304
diff changeset
    12
<br/><br/>
105
9ce5f3e887ce Changed the content to match SciPy.in 2010 initial plans. Commented out most part.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 67
diff changeset
    13
<p>
397
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    14
  <a href="http://www.iitb.ac.in"><img src="/static/img/iitb_logo.jpg" height=180 alt="IIT-B Logo"
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    15
    title="Indian Institute of Technology, Bombay"  /></a><br /><br /><br/>
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    16
  The SciPy.in 2011 conference is being held at the
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    17
  victor Menezes Convention Centre of the
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    18
  <a href="http://www.iitb.ac.in/">Indian Institute of Technology, Bombay</a> (IITB). 
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    19
  IITB is one of India's top engineering schools and is a
079ada629aaf changed the venue information
Parth buch <parth.buch.115@gmail.com>
parents: 361
diff changeset
    20
  world-renowned (and globally top-ranked) engineering school.
304
52982854f0fe Updated the venues page to include ISB and MSLC.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 210
diff changeset
    21
</p>
15
07e4c036a0e7 Added venue information.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 1
diff changeset
    22
</div>
469
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    23
<div id="map" style="height: 400px"></div>
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    24
<script>
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    25
var map = new L.Map('map');
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    26
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/3d56af3a9c9248eb8bca93645a548e76/997/256/{z}/{x}/{y}.png',
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    27
    cloudmadeAttrib = 'Map data &copy; 2011 OpenStreetMap contributors, Imagery &copy; 2011 CloudMade',
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    28
    cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 28, attribution: cloudmadeAttrib});
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    29
var vmcc = new L.LatLng(19.132, 72.917); // geographical point (longitude and latitude)
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    30
map.setView(vmcc, 15).addLayer(cloudmade);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    31
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    32
var maingateLocation = new L.LatLng(19.125079,72.916483);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    33
var maingatemarker = new L.Marker(maingateLocation);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    34
map.addLayer(maingatemarker);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    35
maingatemarker.bindPopup("IIT Bombay main gate").openPopup();
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    36
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    37
var h1Location = new L.LatLng(19.136695,72.913844);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    38
var h1marker = new L.Marker(h1Location);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    39
map.addLayer(h1marker);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    40
h1marker.bindPopup("Hostel 1").openPopup();
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    41
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    42
var h11Location = new L.LatLng(19.133188,72.911934);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    43
var h11marker = new L.Marker(h11Location);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    44
map.addLayer(h11marker);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    45
h11marker.bindPopup("Hostel 11").openPopup();
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    46
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    47
var sameerLocation = new L.LatLng(19.138347,72.915314);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    48
var sameermarker = new L.Marker(sameerLocation);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    49
map.addLayer(sameermarker);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    50
sameermarker.bindPopup("Sameer Guest House").openPopup();
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    51
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    52
var vmccLocation = new L.LatLng(19.132833, 72.917342);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    53
var vmccmarker = new L.Marker(vmccLocation);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    54
map.addLayer(vmccmarker);
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    55
vmccmarker.bindPopup("<b>VMCC</b><br />Venue:Scipy India 2011").openPopup();
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    56
40025d462588 Added map and map markers to the venue page
Parth buch <parth.buch.115@gmail.com>
parents: 408
diff changeset
    57
</script>
210
b61bcea508ee Updated venue page, removed unwanted content.
Anoop Jacob Thomas<anoop@fossee.in>
parents: 166
diff changeset
    58
{% endblock content %}