الموجات فوق الصوتية
احجز الآن
حصل خطأ عند معالجة القالب.
The following has evaluated to null or missing: ==> Bio [in template "20101#20127#72616" at line 48, column 6] ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #if Bio.getData()?has_content [in template "20101#20127#72616" at line 48, column 1] ----
1<div class="modal-dialog modal-lg">
2
3 <!-- Modal content-->
4
5 <div class="modal-content">
6
7 <div class="modal-header">
8
9 <h4 class="modal-title row">
10
11 <div class="services-presenters-image col-4 mr-0 ml-0">
12
13 <img src="images/male-user.svg" class="img-responsive" alt="">
14
15 </div>
16
17 <div class="col-8">
18
19 <div class="services-presenters-title services-presenters-title-modal">
20
21 ${DoctorName.getData()}
22
23 </div>
24
25 <div class=" services-presenters-position-modal">
26 <span style="font-size:11pt"><span ><span style="color:#333333"><span style="line-height:normal"><span><span><span style="font-size:10.5pt"><span>
27${DoctorTitle1.getData()}
28
29</span></span></span></span></span></span></span></span>
30
31 </div>
32
33 </div>
34
35 </h4>
36
37 <button type="button" class="close" data-dismiss="modal">×</button>
38
39
40
41 </div>
42
43 <div class="modal-body">
44
45
46
47 <p>
48<#if Bio.getData()?has_content>
49 ${Bio.getData()}
50</#if>
51
52
53 </p>
54
55 </div>
56
57
58
59
60 </div>
61
62
63
64 </div>