blob: 3065aaa5b234102a3c75fd1ae2e6952e8935a48a (
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
|
{% extends 'page.html'%}
{% load static %}
{% block content %}
<div class="row">
<h3>Register</h3>
<div class="row">
<div class="large-8 columns">
<div class="reg">
<table>
<th>Tickets</th>
<th>Price</th>
<tr>
<td>Regular Registration<sup>*</sup></td>
<td>INR 600</td>
</tr>
<tr>
<td>Corporate Registration</td>
<td>INR 1000</td>
</tr>
</table>
</div>
<div class="reg">
<table>
<th>Addons</th>
<th>Price</th>
<tr>
<td>Accommodation<sup>#</sup></td>
<td>INR 740</td>
</tr>
<tr>
<td>T-Shirt</td>
<td>INR 250</td>
</tr>
</table>
</div>
<div style="margin-left: 10px;">
<div class="clearfix"></div>
<a class="button small success" href="http://scipyindia2013.doattend.com/">Register</a>
<strong>for SciPy India 2013.</strong>
<br>
<h5>Note:</h5>
* - Regular Registrants should bring any one of their identification card during the event. <br> <br>
# - Accommodation will be provided for 4 days starting from the previous day of the event.
<br><br>
We regret the inconvinience caused earlier. We had some issues with the payment gateway.
</div>
<!-- Modal test -->
<div id="myModal" class="reveal-modal">
<ul class="large-grid-2" style="text-align: center">
<img src="{% static 'img/Front-lg.png' %}">
<img src="{% static 'img/Back-lg.png' %}" width="360px">
</ul>
<p style="text-align: center">*Colours are for representation purpose and may slightly vary from the original.</p>
<a class="close-reveal-modal">×</a>
</div>
<a href="#" data-reveal-id="myModal">Click Me For A Modal</a>
</div>
<div class="large-4 columns">
<h6><u>T-Shirt Preview</u></h6>
<div class="row">
<ul class="large-grid-2">
<a href="#" data-reveal-id="myModal">
<img src="{% static 'img/Front-sm.png' %}">
<img src="{% static 'img/Back-sm.png' %}" width="90px">
</a>
</ul>
</div>
</div>
</div> <!-- /row -->
</div> <!-- /row -->
<div class="reveal-modal-bg" style="display: none"></div>
{% endblock %}
|