Lines 1467-1475
legend:hover {
Link Here
|
1467 |
[% FOREACH restriction_type IN restriction_types %] |
1467 |
[% FOREACH restriction_type IN restriction_types %] |
1468 |
[% IF !restriction_type.is_system %] |
1468 |
[% IF !restriction_type.is_system %] |
1469 |
[% IF restriction_type.is_default %] |
1469 |
[% IF restriction_type.is_default %] |
1470 |
<option value="[% code | html %]" selected>[% PROCESS restriction_type_description %]</option> |
1470 |
<option value="[% restriction_type.code | html %]" selected>[% PROCESS restriction_type_description %]</option> |
1471 |
[% ELSE %] |
1471 |
[% ELSE %] |
1472 |
<option value="[% code | html %]">[% PROCESS restriction_type_description %]</option> |
1472 |
<option value="[% restriction_type.code | html %]">[% PROCESS restriction_type_description %]</option> |
1473 |
[% END %] |
1473 |
[% END %] |
1474 |
[% END %] |
1474 |
[% END %] |
1475 |
[% END %] |
1475 |
[% END %] |
1476 |
- |
|
|