Advertisement
OOPMan

booking_request_practitioner.html

Jun 19th, 2014
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1. {% extends "base_email.html" %}
  2. {% block body %}<tr>
  3.     <td style="padding: 20px;">
  4.         <p>Hi {{ practitioner.user.first_name }},</p>
  5.         <p>
  6.             You have received a new appointment request.
  7.         </p>
  8.         <p>
  9.             Date: <strong>{{ date_and_time }}</strong><br/>
  10.             Reason for visit: <strong><em>{{ appointment.reason_for_visit }}</em></strong><br/>
  11.             Existing Patient: <strong>{{ 'Yes' if appointment.existing_patient else 'No' }}</strong><br/>
  12.             Name: <strong>{{ patient }}</strong><br/>
  13.             Telephone: <strong>{{ appointment.contact_number }}</strong><br/>
  14.             Email: <strong>{{ appointment.email }}</strong><br/>
  15.         </p>
  16.         <p>
  17.             To confirm this appointment, <a href="{{ host }}appointments/{{ appointment.appointment_id }}/confirm/{{ appointment.confirmed_api_token_chain_id }}/">click here.</a><br/>
  18.             <br/>
  19.             To decline this appointment, <a href="{{ host }}appointments/{{ appointment.appointment_id }}/decline/{{ appointment.declined_api_token_chain_id }}/">click here.</a><br/>
  20.             <br/>
  21.             To view your appointments, <a href="{{ host }}account/appointments/{{ practitioner.seo_slug }}/">click here.</a><br/>
  22.         </p>
  23.         <p>
  24.             The RecoMed Team
  25.         </p>
  26.     </td>
  27.     </tr>
  28. {% endblock body %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement