[% SWITCH m.code %]
[% CASE 'success_on_saving' %]
Batch status saved successfully.
[% CASE 'success_on_delete' %]
Batch status deleted successfully.
[% CASE 'error_on_saving' %]
An error occurred when saving this batch status. Check the logs for details.
[% CASE 'error_on_delete' %]
An error occurred when deleting this batch status.
[% CASE %]
[% m.code | html %]
[% END %]
[% END %]
[% IF op == 'add_form' %]
[% IF status %]
Modify a batch status
[% ELSE %]New batch status
[% END %] [% END %] [% IF op == 'list' %]Interlibrary loan batch statuses
[% IF statuses.count %]Name | Code | Is system | Actions | [% FOREACH status IN statuses %]
---|---|---|---|
[% status.name | html %] | [% status.code | html %] | [% status.is_system ? "Yes" : "No" | html %] | Edit [% IF !status.is_system %] Delete [% END %] |
There are no batch statuses defined. Create new batch status
[% END %]
[% END %]