You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PatientDetailsTemplate.html 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <div class="row">
  2. <h2 class="col-xs-12 page-header">
  3. Patientenverwaltung
  4. <span id="patient-name">Patientenname</span>
  5. </h2>
  6. <script type="text/javascript">
  7. $("#patient-name").html(patient.lastname())
  8. </script>
  9. </div>
  10. <div class="row">
  11. <h6 class="col-xs-6">
  12. Geschlecht
  13. </h6>
  14. <h6 class="col-xs-6" id="patient-gender"></h6>
  15. <script type="text/javascript">
  16. $("#patient-gender").html(patient.gender())
  17. </script>
  18. </div>
  19. <div class="row">
  20. <h6 class="col-xs-6">
  21. Geburtsdatum
  22. </h6>
  23. <h6 class="col-xs-6" id="patient-date">Geburtsdatum</h6>
  24. <script type="text/javascript">
  25. $("#patient-date").html(patient.date())
  26. </script>
  27. </div>
  28. <div class="row">
  29. <h6 class="col-xs-6">
  30. Wohnort:
  31. </h6>
  32. <h6 class="col-xs-6" id="patient-home">Patientenname</h6>
  33. <script type="text/javascript">
  34. $("#patient-home").html(patient.home())
  35. </script>
  36. </div>
  37. <div class="row">
  38. <h6 class="col-xs-6">
  39. Land:
  40. </h6>
  41. <h6 class="col-xs-6" id="patient-country">Land:</h6>
  42. <script type="text/javascript">
  43. $("#patient-country").html(patient.country())
  44. </script>
  45. </div>