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