blob: bbd9587bb24cc795826c2c39a365d333e9d83f3b (
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 "base.html" %} {% load static %} {% load widget_tweaks %} {% block content %}
<section id="confirm_ticket" class="section confirm_ticket">
<div class="container">
<a style="color:red; ">{{ render_field.errors }}</a>
<div class="row">
{% if event_details == 1 %}
<form action="POST">
<table class="table table-striped table-bordered">
<tr>
<th scope="row">Registration Type</th>
<td> {{ ticket_type }} </td>
</tr>
<tr>
<th scope="row">Attendee Type</th>
<td>{{ attendee_type }}</td>
</tr>
<tr>
<th scope="row">Name</th>
<td>{{ first_name }} {{ last_name }}</td>
</tr>
<tr>
<th scope="row">Email</th>
<td>{{ email }} </td>
</tr>
<tr>
<th scope="row">Phone number</th>
<td>{{ phone_number }}</td>
</tr>
<tr>
<th scope="row">Address</th>
<td>{{ full_address }}</td>
</tr>
<tr>
<th scope="row">City</th>
<td>{{ city }}</td>
</tr>
<tr>
<th scope="row">State</th>
<td>{{ state }}</td>
</tr>
<tr>
<th scope="row">Pincode</th>
<td>{{ pincode }}</td>
</tr>
<tr>
<th scope="row">Institute/ Organization/ Company</th>
<td>{{ institute }}</td>
</tr>
{% if gstin != '000000000000000' %}
<tr>
<th scope="row">GST No.</th>
<td>{{ gstin }}</td>
</tr>
{% endif %}
<tr>
<th scope="row">Willing to attend a job fair</th>
<td>{{ job_fair }}</td>
</tr>
<tr>
<th scope="row">T shirt (addons Rs 350 + GST)</th>
<td>{{ tshirt }}</td>
</tr>
<tr>
<th scope="row">Total amount</th>
<td>{{ amount }}</td>
</tr>
<tr>
<th scope="row"></th>
<td>
<button class="btn btn-primary" type="submit">Edit</button> <button class="btn btn-primary" type="submit">Pay now</button></td>
</tr>
</table>
</form>
{% else %}
please click to book your ticket
{% endif %}
</div>
</div>
</section>
{% endblock %}
|