|
Lines 386-392
Link Here
|
| 386 |
<input type="radio" name="borrower_sex" id="sex-male" value="M" /> |
386 |
<input type="radio" name="borrower_sex" id="sex-male" value="M" /> |
| 387 |
[% END %] |
387 |
[% END %] |
| 388 |
|
388 |
|
| 389 |
<label for="sex-none" class="radio inline">None specified: </label> |
389 |
<label for="sex-other" class="radio inline">Other:</label> |
|
|
390 |
[% IF borrower.sex == 'O' %] |
| 391 |
<input type="radio" name="borrower_sex" id="sex-other" value="O" checked="checked" /> |
| 392 |
[% ELSE %] |
| 393 |
<input type="radio" name="borrower_sex" id="sex-other" value="O" /> |
| 394 |
[% END %] |
| 395 |
|
| 396 |
|
| 397 |
<label for="sex-none" class="radio inline">None specified / Prefer not to say: </label> |
| 390 |
[% IF borrower.sex == '' %] |
398 |
[% IF borrower.sex == '' %] |
| 391 |
<input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" /> |
399 |
<input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" /> |
| 392 |
[% ELSE %] |
400 |
[% ELSE %] |
| 393 |
- |
|
|