summaryrefslogtreecommitdiff
path: root/static/website/templates/confirm-booking.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/templates/confirm-booking.html')
-rw-r--r--static/website/templates/confirm-booking.html84
1 files changed, 84 insertions, 0 deletions
diff --git a/static/website/templates/confirm-booking.html b/static/website/templates/confirm-booking.html
new file mode 100644
index 0000000..bbd9587
--- /dev/null
+++ b/static/website/templates/confirm-booking.html
@@ -0,0 +1,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>&nbsp;&nbsp;<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 %}