blob: b6ad0c594ca7a257144ce2dceb215cdd9ca85e4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
{% extends 'website/templates/base.html' %}
{% load static %}
{% block sidebar %}
{% endblock %}
{% block current %}
Register
{% endblock %}
{% block content %}
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div id="dates">
<center><p>
Online registration for the conference is now closed.
<br>However, you can attend the conference through spot registrations
</p></center>
<h4 class="garmond" align="center"><u>Ticket Pricing</u></h4>
<table class="table table-bordered">
<tr>
<td>Regular Registration</td>
<td>1000.0 INR</td>
</tr>
<tr>
<td>Corporate Registration</td>
<td>1800.0 INR</td>
</tr>
</table>
<hr>
<h4 class="garmond" align="center"><u>Addons</u></h4>
<table class="table table-bordered">
<tr>
<td>Accommodation</td>
<td>800.0 INR</td>
</tr>
<tr>
<td><a href="#" data-toggle="modal" data-target="#teeModal">T-Shirt</a> (click to view the design)</td>
<td>250.0 INR</td>
</tr>
</table>
</div> <!-- /#dates -->
</div> <!-- /.col -->
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h4 class="garmond" align="center"><u>Ticket Details</u></h4>
<p>
<b>Regular Registration</b> is only for students & faculty members from any college/institutes. If you have opted for "Regular Registration", you will have to present your college/institutes ID card at the registration desk at the venue.
</p>
<p>
<b>Corporate Registration</b> is for only for working professionals.
</p>
<hr>
<p>
<b>Accommodation</b> will be provided in IIT-B hostels on twin sharing basis from 4th evening to 8th morning & will be based on availability for spot registrants.
</p>
<p>
<b>Accommodation</b> or <b>T-Shirt</b> is not included in any of the registration tickets & have to be purchased separately.
</p>
<hr>
<h3 class="garmond" align="center"><u>NOTE </u></h3>
<p>
If you are thinking to opt for spot registration we kindly request you to carry a copy of <a href="{% static 'website/docs/scipyspot.pdf' %}" target="_blank">this</a> ticket for passing security checks at the IIT-B gates.
</p>
<p>This <a href="{% static 'website/docs/instruction.pdf' %}">Instruction Sheet</a> will help you to reach & go around the IITB campus. Make sure you have eiter a hard copy or a soft copy of the sheet with you. It will not be provided at the venue.</p>
<hr>
</div> <!-- /.col -->
</div><!-- /row -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div id="dates">
<h4 class="garmond" align="center"><u>Important Dates</u></h4>
<table class="table table-bordered">
<tr>
<td>Registration Starts</td>
<td>22<sup>nd</sup> Sep. 2014</td>
</tr>
<tr>
<td>Registration Ends</td>
<td>1<sup>st</sup> Dec. 2014</td>
</tr>
</table>
<hr>
</div> <!-- /#dates -->
</div> <!-- /.col -->
</div><!-- /row -->
<div class="modal fade" id="teeModal" tabindex="-1" role="dialog" aria-labelledby="teeModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="teeModalLabel">SciPy India 2014: T-Shirt Design</h4>
</div>
<div class="modal-body">
<img width=570 height=520 src="{% static 'website/images/front.JPG' %}">
</div>
</div>
</div>
</div>
{% endblock %}
|