[% USE Branches %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
[% IF subscription %]
<option value="">None</option>
[% END %]
[% IF CAN_user_serials_superserials %]
[% FOREACH library IN libraries %]
[% PROCESS options_for_libraries libraries => Branches.all(selected => subscription.branchcode) %]
<option value="[% library.branchcode | html %]"> [% library.branchname | html %] </option>
</select> (select a library)
</li>
);
}
my $libraries = Koha::Libraries->search( {}, { order_by => ['branchcode'] }, );
$template->param(
op => $op,
libraries => $libraries,
output_html_with_http_headers $query, $cookie, $template->output;
-