1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div class="lpUnitSelect">
<select class="lpUnit lpInvisible">
{{#units}}
<option value="{{unit}}" {{#selected}}selected{{/selected}}>{{unit}}</option>
{{/units}}
</select>
{{#weight}}
<input type="hidden" class="lpMG" value="{{weight}}">
{{/weight}}
{{^weight}}
<input type="hidden" class="lpMG" value="{{listTotalWeight}}"/>
{{/weight}}
{{#authorUnit}}
<span class="lpDisplay">{{authorUnit}}</span>
{{/authorUnit}}
{{^authorUnit}}
<span class="lpDisplay">{{totalUnit}}</span>
{{/authorUnit}}
<i class="lpSprite lpExpand"></i>
<ul class="lpUnitDropdown">
{{#units}}
<li class="{{unit}}">{{unit}}</li>
{{/units}}
</ul>
</div>