author | Mahlon E. Smith <mahlon@martini.nu> |
Mon, 23 Sep 2013 09:10:55 -0700 | |
changeset 1 | b3419d05eabb |
parent 0 | 80c32ef237c6 |
permissions | -rw-r--r-- |
0 | 1 |
<%# vim: set nosta noet ts=4 sw=4 ft=html: %> |
2 |
||
3 |
<fieldset> |
|
4 |
<legend>Application Behavior</legend> |
|
5 |
<table cellpadding="0" cellspacing="0"> |
|
6 |
<tbody> |
|
7 |
<% $.each( bool_prefs, function( pref, vals ) { %> |
|
8 |
<tr> |
|
9 |
<td class="desc"><label for="<%= pref %>_id"><%= vals[ 1 ] %><span></span></label></td> |
|
10 |
<td><input id="<%= pref %>_id" type="checkbox" <%= vals[0] ? 'checked' : '' %> data-field="<%= pref %>" /></td> |
|
11 |
</tr> |
|
12 |
<% }) %> |
|
13 |
</tbody> |
|
14 |
</table> |
|
15 |
</fieldset> |
|
16 |