blob: 63e747f95b854e241e2690fa9794cdd197a43c94 (
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
|
{% extends 'website/templates/base.html' %}
{% 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">
<h4 class="garmond" align="center"><u>Ticket Pricing</u></h4>
<table class="table table-bordered">
<tr>
<td>Regular Registration</td>
<td>800.0 INR</td>
</tr>
<tr>
<td>Corporate Registration</td>
<td>1500.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>T-Shirt</td>
<td>250.0 INR</td>
</tr>
</table>
<p>If you already have the main tickets and just need to buy addons click <a href="https://scipyindia2014.doattend.com/get_addons" target="_blank">here</a>
</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.
</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>
</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 class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<br><br>
<p>
<u class="garmond">Registration for the conference is now open.</u><br><br>
<a href='http://scipyindia2014.doattend.com'><img src='http://doattend.com/assets/btnw-reg-now.png'/></a>
</p>
</div> <!-- /.col -->
</div><!-- /row -->
{% endblock %}
|