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 782B

123456789101112131415161718192021222324252627282930
  1. <div class="row">
  2. <h2 class="col-xs-12 page-header">
  3. Patientenverwaltung
  4. <span id="patient-name">Patientenname</span>
  5. </h2>
  6. </div>
  7. <div class="row">
  8. <h6 class="col-xs-6">
  9. <p>Geschlecht:</p>
  10. <p>Geburstdatum:</p>
  11. <p>Wohnort:</p>
  12. <p>Land:</p>
  13. </h6>
  14. <h6 class="col-xs-6">
  15. <p id="patient-gender"></p>
  16. <p id="patient-date"></p>
  17. <p id="patient-home"></p>
  18. <p id="patient-country"></p>
  19. </h6>
  20. </div>
  21. <script type="text/javascript">
  22. $("#patient-name").html(patient.lastname())
  23. $("#patient-home").html(patient.home())
  24. $("#patient-date").html(patient.date())
  25. $("#patient-country").html(patient.country())
  26. $("#patient-gender").html(patient.gender())
  27. </script>