diff options
author | Prashant S | 2019-08-27 12:32:16 +0530 |
---|---|---|
committer | GitHub | 2019-08-27 12:32:16 +0530 |
commit | 46c8dee1d41462c4a00989b91d555faf6e422632 (patch) | |
tree | a9089f56541854b48ddbda733832a153c6d53927 /static/website/templates/confirm-booking.html | |
parent | 23507115caa3d4de0dbf4909376e35df4352d3d9 (diff) | |
parent | b9c709823e26f5b20d3732e1788b871cdd961a03 (diff) | |
download | SciPy2019-46c8dee1d41462c4a00989b91d555faf6e422632.tar.gz SciPy2019-46c8dee1d41462c4a00989b91d555faf6e422632.tar.bz2 SciPy2019-46c8dee1d41462c4a00989b91d555faf6e422632.zip |
Merge pull request #1 from prashantsinalkar/master
updated project code
Diffstat (limited to 'static/website/templates/confirm-booking.html')
-rw-r--r-- | static/website/templates/confirm-booking.html | 84 |
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> <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 %} |