2012-03-07 11:54:48 +01:00
|
|
|
<ul id="$ID" class="$extraClass"<% if Description %> title="$Description"<% end_if %>>
|
2011-12-22 13:10:57 +01:00
|
|
|
<% if Options.Count %>
|
2012-05-11 03:49:20 +02:00
|
|
|
<% loop Options %>
|
2011-12-22 13:10:57 +01:00
|
|
|
<li class="$Class">
|
2012-08-10 10:27:33 +02:00
|
|
|
<input id="$ID" class="checkbox" name="$Name" type="checkbox" value="$Value"<% if isChecked %> checked="checked"<% end_if %><% if isDisabled %> disabled="disabled"<% end_if %> />
|
2011-12-22 13:10:57 +01:00
|
|
|
<label for="$ID">$Title</label>
|
|
|
|
</li>
|
2012-05-11 03:49:20 +02:00
|
|
|
<% end_loop %>
|
2011-12-22 13:10:57 +01:00
|
|
|
<% else %>
|
|
|
|
<li>No options available</li>
|
|
|
|
<% end_if %>
|
2011-03-23 05:12:25 +01:00
|
|
|
</ul>
|