templates/registry/patient-appointment.html.twig line 1

Open in your IDE?
  1. {% extends 'registry/base.html.twig' %}
  2. {% block stylesheets %}
  3.     {{ parent() }}
  4.     <link rel="stylesheet" href="{{ asset('build/patient-appointment.css') }}">
  5.     <link rel="stylesheet" href="{{ asset('build/appointment.css') }}">
  6. {% endblock %}
  7. {% block javascripts %}
  8.     {{ parent() }}
  9.     <script src="{{ asset('build/patient-appointment.js') }}"></script>
  10. {% endblock %}
  11. {% block container %}
  12.     <div id="root"
  13.             {% if placeId is defined and not placeId is empty %}
  14.                 data-place-id="{{ placeId }}"
  15.             {% endif %}
  16.             {% if institutionId is defined and not institutionId is empty %}
  17.                 data-institution-id="{{ institutionId }}"
  18.             {% endif %}
  19.             {% if departmentId is defined and not departmentId is empty %}
  20.                 data-department-id="{{ departmentId }}"
  21.             {% endif %}
  22.             {% if doctorId is defined and not doctorId is empty %}
  23.                 data-doctor-id="{{ doctorId }}"
  24.             {% endif %}
  25.             {% if appointmentDate is defined and not appointmentDate is empty %}
  26.                 data-appointment-date="{{ appointmentDate }}"
  27.             {% endif %}
  28.     ></div>
  29. {% endblock %}