Lines 517-523
legend:hover {
Link Here
|
517 |
<label for="guarantor_relationship">Relationship: </label> |
517 |
<label for="guarantor_relationship">Relationship: </label> |
518 |
<select class="new_guarantor_relationship" name="new_guarantor_relationship"> |
518 |
<select class="new_guarantor_relationship" name="new_guarantor_relationship"> |
519 |
[% END %] |
519 |
[% END %] |
520 |
<option value="" selected>Empty option</option> |
520 |
<option value=""></option> |
521 |
[% FOREACH pr IN possible_relationships.split('\|') %] |
521 |
[% FOREACH pr IN possible_relationships.split('\|') %] |
522 |
[% IF pr != "" %] |
522 |
[% IF pr != "" %] |
523 |
<option value="[% pr | html %]">[% pr | html %]</option> |
523 |
<option value="[% pr | html %]">[% pr | html %]</option> |
524 |
- |
|
|