{% extends 'registry/base.html.twig' %}
{% block stylesheets %}
{{ parent() }}
<link rel="stylesheet" href="{{ asset('build/patient-appointment.css') }}">
<link rel="stylesheet" href="{{ asset('build/appointment.css') }}">
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="{{ asset('build/patient-appointment.js') }}"></script>
{% endblock %}
{% block container %}
<div id="root"
{% if placeId is defined and not placeId is empty %}
data-place-id="{{ placeId }}"
{% endif %}
{% if institutionId is defined and not institutionId is empty %}
data-institution-id="{{ institutionId }}"
{% endif %}
{% if departmentId is defined and not departmentId is empty %}
data-department-id="{{ departmentId }}"
{% endif %}
{% if doctorId is defined and not doctorId is empty %}
data-doctor-id="{{ doctorId }}"
{% endif %}
{% if appointmentDate is defined and not appointmentDate is empty %}
data-appointment-date="{{ appointmentDate }}"
{% endif %}
></div>
{% endblock %}