| 28847 |
manish |
1 |
<td>$pob.getId()</td>
|
|
|
2 |
<td>$pob.getOutLetName()</td>
|
|
|
3 |
<td>$pob.getPhoneNumber()</td>
|
|
|
4 |
<td>$pob.getCity()</td>
|
|
|
5 |
|
|
|
6 |
<td>$pob.getAgreedBrandFees()</td>
|
|
|
7 |
<td>$pob.getReceivedBrandFees()</td>
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
<td>
|
|
|
11 |
<select name="dashboardTraining" id="dashboardTraining" required disabled>
|
|
|
12 |
<option value="" selected>-Dashboard Training-</option>
|
|
|
13 |
#if($partnerOnboardingTrainingMap.get($pob.getId()).getDashboardTraning() == "YES")
|
|
|
14 |
<option value="YES" selected>YES</option>
|
|
|
15 |
#else
|
|
|
16 |
<option value="YES" >YES</option>
|
|
|
17 |
#end
|
|
|
18 |
#if($partnerOnboardingTrainingMap.get($pob.getId()).getDashboardTraning() == "NO")
|
|
|
19 |
<option value="NO" selected>NO</option>
|
|
|
20 |
#else
|
|
|
21 |
<option value="NO">NO</option>
|
|
|
22 |
#end
|
|
|
23 |
</select>
|
|
|
24 |
</td>
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
<td>
|
|
|
28 |
<select name="appTraining" id="appTraining" required disabled>
|
|
|
29 |
<option value="" selected>-App Training-</option>
|
|
|
30 |
#if($partnerOnboardingTrainingMap.get($pob.getId()).getAppTraining() == "YES")
|
|
|
31 |
<option value="YES" selected>YES</option>
|
|
|
32 |
#else
|
|
|
33 |
<option value="YES" >YES</option>
|
|
|
34 |
#end
|
|
|
35 |
#if($partnerOnboardingTrainingMap.get($pob.getId()).getAppTraining() == "NO")
|
|
|
36 |
<option value="NO" selected>NO</option>
|
|
|
37 |
#else
|
|
|
38 |
<option value="NO">NO</option>
|
|
|
39 |
#end
|
|
|
40 |
</select>
|
|
|
41 |
</td>
|
|
|
42 |
|
|
|
43 |
#if($partnerOnboardingTrainingMap.get($pob.getId()).getDateCompleted())
|
|
|
44 |
<td><input type="date" class="dateCompleted" placeholder="Date" disabled name="dateCompleted"
|
|
|
45 |
value="$partnerOnboardingTrainingMap.get($pob.getId()).getDateCompleted().format($datehiphenFormatter)"></td>
|
|
|
46 |
#else
|
|
|
47 |
<td><input type="date" class="dateCompleted" placeholder="Date" disabled name="dateCompleted">
|
|
|
48 |
</td>
|
|
|
49 |
#end
|
|
|
50 |
|
|
|
51 |
<td>
|
|
|
52 |
<button type="submit" form="form" data-id="$pob.getId()" style="background:#4CAF50; color:black;"
|
|
|
53 |
class="partner-training-submit">
|
|
|
54 |
Submit
|
|
|
55 |
</button>
|
|
|
56 |
</td>
|