Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 27410 |
tejbeer |
1 |
<select class="form-control input-sm partners" id = "partners" name="partners" placeholder="partners" style="display: none;" multiple="multiple">
|
|
|
2 |
<option value="0">All Partners</option>
|
|
|
3 |
#foreach($customRetailer in $regionRetailerMap.entrySet()))
|
|
|
4 |
#if($positionIdCustomRetailer.contains($customRetailer.getValue()))
|
|
|
5 |
<option value="$customRetailer.getKey()" selected>$customRetailer.getValue().getBusinessName()</option>
|
|
|
6 |
#else
|
|
|
7 |
<option value="$customRetailer.getKey()">$customRetailer.getValue().getBusinessName()</option>
|
|
|
8 |
#end
|
|
|
9 |
#end
|
|
|
10 |
|
|
|
11 |
</select>
|
|
|
12 |
<button class="btn btn-primary update-position" data-positionid="$position.getId()" data-regionid="$position.getRegionId()">Update</button>
|
|
|
13 |
|