Rushabh Mehta | 1fe1a47 | 2017-08-11 17:39:11 +0530 | [diff] [blame] | 1 | <h3>{{_("Training Event")}}</h3> |
| 2 | <p>{{ message }}</p> |
| 3 | |
| 4 | <h4>{{_("Details")}}</h4> |
| 5 | {{_("Event Name")}}: <a href="{{ event_link }}">{{ name }}</a> |
| 6 | <br>{{_("Event Location")}}: {{ location }} |
| 7 | <br>{{_("Start Time")}}: {{ start_time }} |
| 8 | <br>{{_("End Time")}}: {{ end_time }} |
| 9 | <br>{{_("Attendance")}}: {{ attendance }} |
| 10 | |
| 11 | <h4>{{_("Update Response")}}</h4> |
| 12 | {% if not self_study %} |
| 13 | <p>{{_("Please update your status for this training event")}}:</p> |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 14 | <form action="{{ confirm_link }}"><input style="display:inline-block" type="submit" value="Confirm Attendance" /></form> |
Rushabh Mehta | 1fe1a47 | 2017-08-11 17:39:11 +0530 | [diff] [blame] | 15 | <form action="{{ reject_link }}"><input style="display:inline-block" type="submit" value="Reject Invitation" /></form> |
| 16 | {% else %} |
| 17 | <p>{{_("Please confirm once you have completed your training")}}:</p> |
| 18 | <form action="{{ complete_link }}"><input style="display:inline-block" type="submit" value="Completed Training" /></form> |
| 19 | {% endif %} |
| 20 | <p>{{_("Thank you")}},<br> |
| 21 | {{ user_fullname }}</p> |